1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/hextris_ynh.git synced 2024-09-03 19:16:05 +02:00
hextris_ynh/scripts/restore

46 lines
1.6 KiB
Text
Raw Normal View History

2016-05-07 02:07:09 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
2019-02-13 18:38:44 +01:00
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2020-05-28 02:23:15 +02:00
source ../settings/scripts/_common.sh
2019-02-13 18:38:44 +01:00
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2020-05-30 17:51:26 +02:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
ynh_restore_file --origin_path="$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2021-09-09 23:53:24 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Restoring the NGINX web server configuration..." --weight=1
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX
#=================================================
2020-12-12 17:18:50 +01:00
ynh_script_progression --message="Reloading NGINX web server..." --weight=1
2019-05-06 13:40:41 +02:00
ynh_systemd_action --service_name=nginx --action=reload
2019-02-17 20:54:53 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-06 13:40:41 +02:00
ynh_script_progression --message="Restoration completed for $app" --last