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

71 lines
2.2 KiB
Text
Raw Normal View History

2016-03-01 10:47:41 +01:00
#!/bin/bash
2018-11-30 14:47:44 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2016-03-01 10:47:41 +01:00
app=$YNH_APP_INSTANCE_NAME
2016-03-01 10:47:41 +01:00
2018-11-30 14:47:44 +01:00
domain=$(ynh_app_setting_get $app domain)
path_url=$(ynh_app_setting_get $app path)
final_path=$(ynh_app_setting_get $app final_path)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2022-02-04 15:36:57 +01:00
ynh_script_progression --message="Validating restoration parameters..."
2018-11-30 14:47:44 +01:00
2022-02-04 15:36:57 +01:00
test ! -d $final_path || ynh_die "There is already a directory: $final_path "
2018-11-30 14:47:44 +01:00
#=================================================
# STANDARD RESTORE STEPS
#=================================================
# RESTORE OF THE NGINX CONFIGURATION
#=================================================
2021-02-08 09:32:10 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2018-11-30 14:47:44 +01:00
#=================================================
# RESTORE OF THE MAIN DIR OF THE APP
#=================================================
2021-02-08 09:32:10 +01:00
ynh_restore_file --origin_path="$final_path"
2018-11-30 14:47:44 +01:00
#=================================================
# RESTORE USER RIGHTS
#=================================================
# Les fichiers appartiennent à root
chown -R root: $final_path
#=================================================
# GENERIC FINALISATION
#=================================================
# RELOAD NGINX
#=================================================
2021-02-08 09:32:10 +01:00
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..."
2018-11-30 14:47:44 +01:00
2021-02-08 09:32:10 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2021-02-08 09:32:10 +01:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Restoration completed for $app" --last