2017-03-02 15:44:54 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
# Source app helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-03-29 19:25:52 +02:00
|
|
|
# Get multi-instances specific variables
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2017-03-09 17:27:59 +01:00
|
|
|
# Retrieve app settings
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
2017-03-02 15:44:54 +01:00
|
|
|
|
|
|
|
# Copy the app files
|
2017-03-09 17:27:59 +01:00
|
|
|
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"
|
|
|
|
# Copy the php-fpm conf files
|
|
|
|
ynh_backup "/etc/php5/fpm/pool.d/${app}.conf" "php-fpm.conf"
|
2017-03-10 16:59:58 +01:00
|
|
|
ynh_backup "/etc/php5/fpm/conf.d/20-${app}.ini" "php-fpm.ini"
|