2017-07-04 16:18:43 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-07-04 16:18:43 +02:00
|
|
|
|
2018-09-16 14:47:00 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2018-06-27 17:21:59 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-07-04 16:18:43 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
2017-07-04 16:18:43 +02:00
|
|
|
|
2018-09-16 14:47:00 +02:00
|
|
|
ynh_clean_setup () {
|
|
|
|
#### Remove this function if there's nothing to clean before calling the remove script.
|
|
|
|
true
|
|
|
|
}
|
2018-06-27 17:21:59 +02:00
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2017-07-04 16:18:43 +02:00
|
|
|
|
|
|
|
# Retrieve old app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2018-06-27 17:21:59 +02:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
2017-07-04 16:18:43 +02:00
|
|
|
path_url=$(ynh_app_setting_get "$app" path_url)
|
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_webpath_available $domain $path_url \
|
|
|
|
|| ynh_die "Path not available: ${domain}${path_url}"
|
|
|
|
test ! -d $final_path \
|
|
|
|
|| ynh_die "There is already a directory: $final_path "
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECREATE THE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Create the dedicated user (if not existing)
|
|
|
|
ynh_system_user_create $app
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORATION STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2017-07-04 16:18:43 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-07-04 16:18:43 +02:00
|
|
|
|
2018-06-27 17:21:59 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file "$final_path"
|
2017-07-04 16:18:43 +02:00
|
|
|
# Restore permissions to app files
|
2018-09-16 14:47:00 +02:00
|
|
|
# you may need to make some file and/or directory writeable by app (nginx user)
|
2018-06-27 17:21:59 +02:00
|
|
|
sudo chown -R $app: "$final_path"
|
|
|
|
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_restore_file "/etc/php5/fpm/pool.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
systemctl reload php5-fpm
|
|
|
|
systemctl reload nginx
|