2015-11-22 14:37:01 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-01 19:37:00 +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
|
|
|
|
#=================================================
|
|
|
|
|
2017-03-19 23:03:07 +01:00
|
|
|
if [ ! -e _common.sh ]; then
|
2017-03-19 18:31:53 +01:00
|
|
|
# Rapatrie le fichier de fonctions si il n'est pas dans le dossier courant
|
2017-03-19 23:03:07 +01:00
|
|
|
sudo cp ../settings/scripts/_common.sh ./_common.sh
|
|
|
|
sudo chmod a+rx _common.sh
|
2017-03-19 18:31:53 +01:00
|
|
|
fi
|
2017-03-19 23:03:07 +01:00
|
|
|
source _common.sh
|
2016-12-14 16:08:29 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
|
|
|
|
2016-06-29 00:13:30 +02:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-12-14 16:08:29 +01:00
|
|
|
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
2017-03-01 19:37:00 +01:00
|
|
|
db_name=$(ynh_app_setting_get $app db_name)
|
|
|
|
db_pwd=$(ynh_app_setting_get "$app" mysqlpwd)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE MAIN DIR OF THE APP
|
|
|
|
#=================================================
|
|
|
|
|
2017-03-19 18:31:53 +01:00
|
|
|
CHECK_SIZE "$final_path"
|
2017-03-01 19:37:00 +01:00
|
|
|
ynh_backup "$final_path" "sources"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "nginx.conf"
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
ynh_backup "/etc/php5/fpm/pool.d/$app.conf" "php-fpm.conf"
|
|
|
|
ynh_backup "/etc/php5/fpm/conf.d/20-$app.ini" "php-fpm.ini"
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE SQL BDD
|
|
|
|
#=================================================
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-19 18:31:53 +01:00
|
|
|
ynh_mysql_dump_db "$db_name" > dump.sql
|
|
|
|
CHECK_SIZE "dump.sql"
|
|
|
|
ynh_backup "dump.sql" "db.sql"
|
2016-06-29 00:13:30 +02:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
|
|
|
# BACKUP OF THE CRON FILE
|
|
|
|
#=================================================
|
|
|
|
ynh_backup "/etc/cron.d/$app" "cron"
|