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

75 lines
2.6 KiB
Text
Raw Normal View History

2021-03-19 19:47:11 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
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
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2021-03-19 19:47:11 +01:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
path_url=$(ynh_app_setting_get --app=$app --key=path)
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Validating restoration parameters..." --weight=1
2021-03-19 19:47:11 +01:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
test ! -d $final_path \
|| ynh_die --message="There is already a directory: $final_path "
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Restoring the app main directory..." --weight=1
2021-03-19 19:47:11 +01:00
ynh_restore_file --origin_path="$final_path"
#=================================================
# RESTORE USER RIGHTS
#=================================================
2021-03-20 08:23:00 +01:00
# Configure internal permissions for ICEcoder
2021-03-20 19:00:35 +01:00
chown -R my_webapp $final_path
2021-03-19 19:47:11 +01:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
#=================================================
# END OF SCRIPT
#=================================================
2021-03-20 13:12:10 +01:00
ynh_script_progression --message="Restoration completed for $app" --last