2016-05-07 02:07:09 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
2019-02-13 18:38:44 +01:00
|
|
|
# IMPORT GENERIC HELPERS
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
|
2022-10-16 21:36:48 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-05-28 02:23:15 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2019-02-13 18:38:44 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
2020-05-30 17:51:26 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=1
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2023-06-08 17:00:40 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2023-06-08 17:00:40 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-09-09 23:53:24 +02:00
|
|
|
|
2022-10-16 21:36:48 +02:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC RESTORATION
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-12-12 17:18:50 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2019-02-17 20:54:53 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|