2017-04-01 18:16:18 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Get multi-instances specific variables
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
|
|
|
# Copy the app files
|
|
|
|
final_path="/var/www/${app}"
|
|
|
|
ynh_backup "${final_path}" "sources" 1
|
|
|
|
|
|
|
|
# Copy the nginx conf files
|
|
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|
|
|
|
|
2017-04-02 16:06:17 +02:00
|
|
|
# Copy the lufi conf file
|
2017-04-01 18:16:18 +02:00
|
|
|
ynh_backup "${final_path}/lufi.conf" "lufi.conf"
|
|
|
|
ynh_backup "/etc/systemd/system/lufi.service" "systemd_lufi.service"
|
|
|
|
ynh_backup "/etc/cron.d/${app}" "cron_lufi"
|
2017-04-02 16:06:17 +02:00
|
|
|
ynh_backup "/etc/logrotate.d/${app}" "logrotate_lufi"
|
|
|
|
ynh_backup "/var/log/${app}/production.log" "production.log"
|