2016-12-21 18:46:36 +01:00
|
|
|
#!/bin/bash
|
2017-02-25 00:53:44 +01:00
|
|
|
set -eu
|
2016-12-21 18:46:36 +01:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Source YunoHost helpers
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
finalnginxconf=$(ynh_app_setting_get $app finalnginxconf)
|
|
|
|
finalphpconf=$(ynh_app_setting_get $app finalphpconf)
|
|
|
|
|
|
|
|
# Backup sources & data
|
|
|
|
# Note: the last argument is where to save this path, see the restore script.
|
|
|
|
ynh_backup "$final_path" "sources"
|
|
|
|
|
|
|
|
# Copy NGINX configuration
|
|
|
|
ynh_backup "$finalnginxconf" "nginx.conf"
|
|
|
|
|
|
|
|
### PHP (remove if not used) ###
|
|
|
|
# If a dedicated php-fpm process is used:
|
|
|
|
# # Copy PHP-FPM pool configuration
|
|
|
|
ynh_backup "$finalphpconf" "php-fpm.conf"
|