2016-09-11 10:16:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
if [ ! -e _common.sh ]; then
|
|
|
|
# Fetch helpers file if not in current directory
|
2017-09-11 22:00:57 +02:00
|
|
|
cp ../settings/scripts/_common.sh ./_common.sh
|
|
|
|
chmod a+rx _common.sh
|
2017-06-03 18:13:29 +02:00
|
|
|
fi
|
|
|
|
source _common.sh
|
2016-09-11 10:16:37 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-17 19:45:45 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-06-03 18:13:29 +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
|
|
|
|
#=================================================
|
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
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 "
|
2017-06-03 18:13:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD RESTORE STEPS
|
|
|
|
#=================================================
|
|
|
|
# RESTORE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-06-03 18:13:29 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# RESTORE APP MAIN DIR
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "$final_path"
|
2017-06-03 18:13:29 +02:00
|
|
|
# Restore data directory if backed-up
|
2017-11-19 19:10:47 +01:00
|
|
|
if [ -d "$YNH_BACKUP_DIR/apps/${app}/backup/home/yunohost.app/${app}" ] ; then
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "/home/yunohost.app/${app}"
|
2017-11-19 19:10:47 +01:00
|
|
|
else
|
|
|
|
# Create app folders
|
|
|
|
mkdir /home/yunohost.app/${app}/_data /home/yunohost.app/${app}/upload
|
2017-06-03 18:13:29 +02:00
|
|
|
fi
|
2017-11-19 19:10:47 +01:00
|
|
|
# Remove the option backup_core_only if it's in the settings.yml file
|
|
|
|
ynh_app_setting_delete $app backup_core_only
|
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE MYSQL DB
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
db_pwd=$(ynh_app_setting_get $app mysqlpwd)
|
|
|
|
ynh_mysql_create_db $db_name $db_name $db_pwd
|
|
|
|
ynh_mysql_connect_as $db_name $db_pwd $db_name < ./db.sql
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# RECREATE OF THE DEDICATED USER
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
ynh_system_user_create $app # Recreate the dedicated user, if not existing
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE USER RIGHTS
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
chown -R $app: $final_path
|
2017-11-19 19:10:47 +01:00
|
|
|
chown -R $app: /home/yunohost.app/${app}
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-18 18:24:10 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file "/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_restore_file "/etc/fail2ban/filter.d/$app.conf"
|
|
|
|
systemctl restart fail2ban
|
2017-06-18 18:24:10 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# RESTORE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
ynh_restore_file /etc/php5/fpm/pool.d/$app.conf
|
2017-11-19 19:10:47 +01:00
|
|
|
ynh_restore_file "/etc/php5/fpm/conf.d/20-$app.ini"
|
2016-09-11 10:16:37 +02:00
|
|
|
|
2017-06-03 18:13:29 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# RELOAD NGINX AND PHP-FPM
|
|
|
|
#=================================================
|
2017-02-08 18:32:46 +01:00
|
|
|
|
2017-09-11 22:00:57 +02:00
|
|
|
systemctl reload php5-fpm
|
|
|
|
systemctl reload nginx
|