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

97 lines
3.4 KiB
Text
Raw Normal View History

2019-03-08 21:18:22 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-11-01 19:01:41 +01:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-03-08 21:18:22 +01:00
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
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Loading settings..."
2019-03-08 21:18:22 +01:00
app=$YNH_APP_INSTANCE_NAME
2020-11-01 19:01:41 +01:00
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)
2020-11-06 13:46:44 +01:00
YNH_PHP_VERSION=$(ynh_app_setting_get --app=$app --key=phpversion)
2019-03-08 21:18:22 +01:00
#=================================================
# CHECK IF THE APP CAN BE RESTORED
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Validating restoration parameters..."
2019-03-08 21:18:22 +01:00
2020-11-01 19:01:41 +01:00
ynh_webpath_available --domain=$domain --path_url=$path_url \
|| ynh_die --message="Path not available: ${domain}${path_url}"
2019-03-08 21:18:22 +01:00
test ! -d $final_path \
2020-11-01 19:01:41 +01:00
|| ynh_die --message="There is already a directory: $final_path "
2019-03-08 21:18:22 +01:00
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
# RESTORE THE NGINX CONFIGURATION
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Restoring the nginx configuration..."
2019-03-08 21:18:22 +01:00
2020-11-01 19:01:41 +01:00
ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-03-08 21:18:22 +01:00
#=================================================
# RESTORE THE APP MAIN DIR
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Restoring the app main directory..."
2019-03-08 21:18:22 +01:00
2020-11-01 19:01:41 +01:00
ynh_restore_file --origin_path="$final_path"
2019-03-08 21:18:22 +01:00
#=================================================
# RECREATE THE DEDICATED USER
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Recreating the dedicated system user..."
2019-03-08 21:18:22 +01:00
# Create the dedicated user (if not existing)
2020-11-01 19:01:41 +01:00
ynh_system_user_create --username=$app
2019-03-08 21:18:22 +01:00
#=================================================
2020-11-01 19:01:41 +01:00
# RESTORE USER RIGHTS
2019-03-08 21:18:22 +01:00
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Restoring user rights..."
2019-03-08 21:18:22 +01:00
2020-11-01 19:01:41 +01:00
# Restore permissions on app files
chown -R root: $final_path
2019-03-08 21:18:22 +01:00
#=================================================
# RESTORE THE PHP-FPM CONFIGURATION
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Restoring PHP-FPM configuration..."
# Recreate a dedicated php-fpm config
ynh_add_fpm_config --usage=low --footprint=low
2019-03-08 21:18:22 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# RELOAD NGINX AND PHP-FPM
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Reloading nginx web server and php-fpm..."
2019-03-08 21:18:22 +01:00
2020-11-06 13:46:44 +01:00
ynh_systemd_action --service_name=php$YNH_PHP_VERSION-fpm --action=reload
2020-11-01 19:01:41 +01:00
ynh_systemd_action --service_name=nginx --action=reload
2019-03-08 21:18:22 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-01 19:01:41 +01:00
ynh_script_progression --message="Restoration completed for $app"