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
|
|
|
|
#=================================================
|
2022-03-13 17:58:16 +01:00
|
|
|
ynh_script_progression --message="Loading installation 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)
|
2021-02-21 22:16:26 +01:00
|
|
|
phpversion=$(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
|
|
|
|
|
|
|
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
|
|
|
|
#=================================================
|
2022-03-13 17:58:16 +01:00
|
|
|
ynh_script_progression --message="Restoring the NGINX web server 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
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# 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)
|
2021-11-06 16:34:26 +01:00
|
|
|
ynh_system_user_create --username=$app --home_dir="$final_path"
|
2019-03-08 21:18:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
2021-11-06 16:34:26 +01:00
|
|
|
# RESTORE THE APP MAIN DIR
|
2019-03-08 21:18:22 +01:00
|
|
|
#=================================================
|
2021-11-06 16:34:26 +01:00
|
|
|
ynh_script_progression --message="Restoring the app main directory..."
|
|
|
|
|
|
|
|
ynh_restore_file --origin_path="$final_path"
|
2019-03-08 21:18:22 +01:00
|
|
|
|
2021-11-06 16:34:26 +01:00
|
|
|
chmod 750 "$final_path"
|
|
|
|
chmod -R o-rwx "$final_path"
|
|
|
|
chown -R $app:www-data "$final_path"
|
2019-03-08 21:18:22 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2022-03-13 17:58:16 +01:00
|
|
|
ynh_script_progression --message="Restoring the PHP-FPM configuration..."
|
2020-11-01 19:01:41 +01:00
|
|
|
|
|
|
|
# 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
|
|
|
|
#=================================================
|
2021-11-06 16:34:26 +01:00
|
|
|
ynh_script_progression --message="Reloading NGINX web server and PHP-FPM..."
|
2019-03-08 21:18:22 +01:00
|
|
|
|
2021-02-21 22:16:26 +01:00
|
|
|
ynh_systemd_action --service_name=php$phpversion-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"
|