2016-04-07 00:00:41 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC STARTING
|
|
|
|
#=================================================
|
|
|
|
# MANAGE FAILURE OF THE SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2016-11-08 13:38:29 +01:00
|
|
|
|
2017-03-20 00:17:59 +01:00
|
|
|
if [ ! -e _common.sh ]; then
|
2017-03-19 18:36:20 +01:00
|
|
|
# Rapatrie le fichier de fonctions si il n'est pas dans le dossier courant
|
2017-03-20 00:17:59 +01:00
|
|
|
sudo cp ../settings/scripts/_common.sh ./_common.sh
|
|
|
|
sudo chmod a+rx _common.sh
|
2017-03-19 18:36:20 +01:00
|
|
|
fi
|
2017-03-20 00:17:59 +01:00
|
|
|
source _common.sh
|
2016-12-14 16:13:20 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Récupère les infos de l'application.
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
2016-12-14 16:13:20 +01:00
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
infcloud=$(ynh_app_setting_get $app infcloud)
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE MAIN DIR OF THE APP
|
|
|
|
#=================================================
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
CHECK_SIZE "$final_path"
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "$final_path" "${YNH_APP_BACKUP_DIR}$final_path"
|
2017-03-19 18:36:20 +01:00
|
|
|
CHECK_SIZE "/opt/yunohost/$app"
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "/opt/yunohost/$app" "${YNH_APP_BACKUP_DIR}/opt/yunohost/$app"
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "${YNH_APP_BACKUP_DIR}/etc/nginx/conf.d/$domain.d/$app.conf"
|
2016-08-05 17:00:50 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2016-08-05 17:00:50 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
if [ $infcloud -eq 1 ]
|
|
|
|
then
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "/etc/php5/fpm/pool.d/$app.conf" "${YNH_APP_BACKUP_DIR}/etc/php5/fpm/pool.d/$app.conf"
|
|
|
|
ynh_backup "/etc/php5/fpm/conf.d/20-$app.ini" "${YNH_APP_BACKUP_DIR}/etc/php5/fpm/conf.d/20-$app.ini"
|
2017-03-19 18:36:20 +01:00
|
|
|
fi
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE UWSGI CONFIG
|
|
|
|
#=================================================
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "/etc/uwsgi/apps-available/radicale.ini" "${YNH_APP_BACKUP_DIR}/etc/uwsgi/apps-available/radicale.ini"
|
2016-04-07 00:00:41 +02:00
|
|
|
|
2017-03-19 18:36:20 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE RADICALE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
CHECK_SIZE "/etc/$app"
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "/etc/$app" "${YNH_APP_BACKUP_DIR}/etc/$app"
|
2017-03-19 18:36:20 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE LOGROTATE CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2017-06-13 22:28:52 +02:00
|
|
|
ynh_backup "/etc/logrotate.d/$app" "${YNH_APP_BACKUP_DIR}/etc/logrotate.d/$app"
|