1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/20euros_ynh.git synced 2024-09-03 18:05:53 +02:00
20euros_ynh/scripts/restore

32 lines
930 B
Text
Raw Permalink Normal View History

2020-05-10 11:02:09 +02:00
#!/bin/bash
source /usr/share/yunohost/helpers
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore "/etc/nginx/conf.d/$domain.d/$app.conf"
2020-05-10 11:02:09 +02:00
#=================================================
2021-03-25 16:03:00 +01:00
# RESTORE THE APP MAIN DIR
2020-05-10 11:02:09 +02:00
#=================================================
ynh_script_progression "Restoring $app main directory..."
2020-05-10 11:02:09 +02:00
ynh_restore "$install_dir"
2020-05-10 11:02:09 +02:00
#=================================================
# RELOAD NGINX
#=================================================
ynh_script_progression "Reloading NGINX web server..."
2020-05-10 11:02:09 +02:00
ynh_systemctl --service=nginx --action=reload
2020-05-10 11:02:09 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Restoration completed for $app"