2017-04-26 19:01:53 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
if [ ! -e _common.sh ]; then
|
|
|
|
# Fetch helpers file if not in current directory
|
2020-03-31 05:07:19 +02:00
|
|
|
cp ../settings/scripts/_common.sh ./_common.sh
|
|
|
|
chmod a+rx _common.sh
|
2017-04-26 19:01:53 +02:00
|
|
|
fi
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-12-03 18:15:11 +01:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-04-26 19:01:53 +02:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path_url=$(ynh_app_setting_get $app path)
|
|
|
|
is_public=$(ynh_app_setting_get $app is_public)
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# CHECK IF THE APP CAN BE RESTORED
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 05:07:19 +02: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 "
|
2017-04-26 19:01:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORE STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 05:07:19 +02:00
|
|
|
cp -a ./nginx.conf /etc/nginx/conf.d/$domain.d/$app.conf
|
2017-04-26 19:01:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 05:07:19 +02:00
|
|
|
cp -a ./sources/. $final_path
|
2017-04-26 19:01:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RECREATE OF THE DEDICATED USER
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_system_user_create $app # Recreate the dedicated user, if not existing
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 05:07:19 +02:00
|
|
|
chown -R $app: $final_path
|
2017-04-26 19:01:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 05:07:19 +02:00
|
|
|
cp -a ./php-fpm.conf /etc/php5/fpm/pool.d/$app.conf
|
2017-04-26 19:01:53 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
|
|
|
|
2020-03-31 05:07:19 +02:00
|
|
|
systemctl reload php5-fpm
|
|
|
|
systemctl reload nginx
|