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
|
|
|
|
#=================================================
|
|
|
|
|
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
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
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-01 19:37:00 +01:00
|
|
|
mysqldump -u "$db_name" -p"$db_pwd" --no-create-db "$db_name" > ./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"
|