1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/scripts/restore
ericgaspar a77dd21b9a
Fix
2020-10-20 23:28:09 +02:00

34 lines
950 B
Bash

#!/bin/bash
#=================================================
# 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
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
# Retrieve old app settings
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get $app domain)
# Restore sources & data
cp -a ./sources "/var/www/${app}"
# Restore Nginx and YunoHost parameters
cp -a ./nginx.conf "/etc/nginx/conf.d/${domain}.d/${app}.conf"
# Reload services
service nginx reload