2016-03-01 10:47:41 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-11-30 14:47:44 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2016-03-01 10:47:41 +01:00
|
|
|
|
2016-12-06 03:09:15 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-03-01 10:47:41 +01:00
|
|
|
|
2018-11-30 14:47:44 +01:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
2022-02-04 15:36:57 +01:00
|
|
|
ynh_script_progression --message="Validating restoration parameters..."
|
2018-11-30 14:47:44 +01:00
|
|
|
|
2022-02-04 15:36:57 +01:00
|
|
|
test ! -d $final_path || ynh_die "There is already a directory: $final_path "
|
2018-11-30 14:47:44 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORE STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE OF THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2021-02-08 09:32:10 +01:00
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2018-11-30 14:47:44 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE OF THE MAIN DIR OF THE APP
|
|
|
|
#=================================================
|
|
|
|
|
2021-02-08 09:32:10 +01:00
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2018-11-30 14:47:44 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Les fichiers appartiennent à root
|
|
|
|
chown -R root: $final_path
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALISATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2021-02-08 09:32:10 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..."
|
2018-11-30 14:47:44 +01:00
|
|
|
|
2021-02-08 09:32:10 +01:00
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
2016-12-06 03:09:15 +01:00
|
|
|
|
2021-02-08 09:32:10 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|