1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/leed_ynh.git synced 2024-09-03 19:26:32 +02:00
leed_ynh/scripts/backup

71 lines
2.1 KiB
Text
Raw Normal View History

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 18:31:53 +01:00
if [ ! -e .fonctions ]; then
# Rapatrie le fichier de fonctions si il n'est pas dans le dossier courant
sudo cp ../settings/scripts/.fonctions ./.fonctions
sudo chmod a+rx .fonctions
fi
source .fonctions
2016-12-14 16:08:29 +01:00
source /usr/share/yunohost/helpers
2017-03-01 19:37:00 +01:00
#=================================================
# LOAD SETTINGS
#=================================================
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"
2017-03-01 19:37:00 +01:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP OF THE CRON FILE
#=================================================
ynh_backup "/etc/cron.d/$app" "cron"