2014-11-25 22:12:15 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-20 23:28:09 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
|
|
|
source ../settings/scripts/_common.sh
|
2017-03-08 23:33:10 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-05-07 01:44:03 +02:00
|
|
|
|
2020-10-20 23:28:09 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
2016-05-07 01:44:03 +02:00
|
|
|
# Retrieve old app settings
|
2017-03-08 23:33:10 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
|
2014-11-25 22:12:15 +01:00
|
|
|
# Restore sources & data
|
2020-10-20 23:28:09 +02:00
|
|
|
cp -a ./sources "/var/www/${app}"
|
2014-11-25 22:12:15 +01:00
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
# Restore Nginx and YunoHost parameters
|
2020-10-20 23:28:09 +02:00
|
|
|
cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
|
2014-11-25 22:12:15 +01:00
|
|
|
|
2016-05-13 22:29:15 +02:00
|
|
|
# Reload services
|
2020-10-20 23:28:09 +02:00
|
|
|
service nginx reload
|