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
|
|
|
#=================================================
|
|
|
|
|
2020-05-28 02:23:15 +02:00
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
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
|
|
|
|
|
|
|
#=================================================
|
2019-02-13 18:38:44 +01:00
|
|
|
# MANAGE SCRIPT FAILURE
|
2017-09-28 18:02:52 +02:00
|
|
|
#=================================================
|
|
|
|
|
2019-02-13 18:38:44 +01:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-05-06 13:40:41 +02:00
|
|
|
ynh_script_progression --message="Loading settings..." --weight=2
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2016-05-07 02:07:09 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
domain=$(ynh_app_setting_get --app=$app --key=domain)
|
|
|
|
path_url=$(ynh_app_setting_get --app=$app --key=path)
|
|
|
|
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2020-05-30 17:51:26 +02:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..." --weight=1
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
ynh_webpath_available --domain=$domain --path_url=$path_url \
|
|
|
|
|| ynh_die --message="Path not available: ${domain}${path_url}"
|
2017-09-28 18:02:52 +02:00
|
|
|
test ! -d $final_path \
|
2019-05-06 13:40:41 +02:00
|
|
|
|| ynh_die --message="There is already a directory: $final_path "
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2020-12-06 12:36:06 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX configuration..." --weight=1
|
2017-09-28 18:02:52 +02:00
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
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
|
|
|
|
2019-05-06 13:40:41 +02:00
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2017-09-28 18:02:52 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-12-06 12:36:06 +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
|