2020-05-10 11:02:09 +02: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-03-25 16:03:00 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2020-05-10 11:02:09 +02:00
|
|
|
#=================================================
|
2021-03-25 16:03:00 +01:00
|
|
|
ynh_script_progression --message="Restoring $app main directory..." --weight=2
|
2020-05-10 11:02:09 +02:00
|
|
|
|
2023-02-03 13:15:08 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2020-05-10 11:02:09 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Restore permissions on app files
|
2023-02-03 13:15:08 +01:00
|
|
|
chown -R $app:www-data $install_dir
|
|
|
|
chmod o-rwx $install_dir
|
2020-05-10 11:02:09 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX
|
|
|
|
#=================================================
|
2020-08-13 18:30:30 +02:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server..." --weight=3
|
2020-05-10 11:02:09 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name=nginx --action=reload
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Restoration completed for $app" --last
|