2021-01-29 23:34:36 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
2021-07-04 09:18:48 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2021-01-29 23:34:36 +01:00
|
|
|
#=================================================
|
2021-07-04 09:18:48 +02:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..." --weight=2
|
|
|
|
|
2023-02-17 13:13:31 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-01-29 23:34:36 +01:00
|
|
|
|
2023-02-17 13:13:31 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2021-01-29 23:34:36 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=3
|
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2021-07-04 09:18:48 +02:00
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|