2020-11-05 22:30:55 +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-08-30 14:06:49 +02:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2020-11-05 22:30:55 +01:00
|
|
|
#=================================================
|
2021-08-30 14:06:49 +02:00
|
|
|
ynh_script_progression --message="Restoring Encryptic main directory..." --weight=2
|
2020-11-05 22:30:55 +01:00
|
|
|
|
2023-05-19 11:46:54 +02:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2021-08-30 14:06:49 +02:00
|
|
|
|
2023-05-19 11:46:54 +02:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2020-11-05 22:30:55 +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
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-05 22:42:06 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for Encryptic" --last
|