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

42 lines
1.4 KiB
Text
Raw Normal View History

2014-11-04 09:47:50 +01:00
#!/bin/bash
2020-11-05 20:59:46 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-11-05 20:59:46 +01:00
source /usr/share/yunohost/helpers
#=================================================
# RESTORE THE APP MAIN DIR
2020-11-05 20:59:46 +01:00
#=================================================
ynh_script_progression --message="Restoring Laverna main directory..." --weight=2
2014-11-04 09:47:50 +01:00
ynh_restore_file --origin_path="$install_dir"
2020-11-05 20:59:46 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2020-11-05 20:59:46 +01:00
#=================================================
# RESTORE SYSTEM CONFIGURATIONS
2020-11-05 20:59:46 +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
#=================================================
2020-11-05 21:05:02 +01:00
ynh_script_progression --message="Restoration completed for Laverna" --last