2014-11-04 09:47:50 +01:00
|
|
|
#!/bin/bash
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2015-10-27 16:03:21 +01:00
|
|
|
|
2020-11-05 20:59:46 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2023-11-10 13:50:40 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
2023-11-10 13:50:40 +01:00
|
|
|
ynh_script_progression --message="Restoring Laverna main directory..." --weight=2
|
2014-11-04 09:47:50 +01:00
|
|
|
|
2023-11-10 13:50:40 +01:00
|
|
|
ynh_restore_file --origin_path="$install_dir"
|
2020-11-05 20:59:46 +01:00
|
|
|
|
2023-11-10 13:50:40 +01:00
|
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
chown -R $app:www-data "$install_dir"
|
2020-11-05 20:59:46 +01:00
|
|
|
|
|
|
|
#=================================================
|
2023-11-10 13:50:40 +01:00
|
|
|
# RESTORE SYSTEM CONFIGURATIONS
|
2020-11-05 20:59:46 +01:00
|
|
|
#=================================================
|
2023-11-10 13:50:40 +01:00
|
|
|
ynh_script_progression --message="Restoring system configurations related to $app..." --weight=1
|
2020-11-05 20:59:46 +01:00
|
|
|
|
|
|
|
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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
|
|
|
|
#=================================================
|
2016-05-18 22:31:45 +02:00
|
|
|
|
2020-11-05 21:05:02 +01:00
|
|
|
ynh_script_progression --message="Restoration completed for Laverna" --last
|