2015-11-22 14:37:01 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2017-09-05 00:24:01 +02:00
|
|
|
# GENERIC START
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2018-07-13 17:33:34 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2016-12-14 16:08:29 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-09-05 00:24:01 +02:00
|
|
|
#=================================================
|
|
|
|
# MANAGE SCRIPT FAILURE
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Exit if an error occurs during the execution of the script
|
|
|
|
ynh_abort_if_errors
|
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# LOAD SETTINGS
|
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Loading installation settings..." --weight=2
|
2017-03-01 19:37:00 +01:00
|
|
|
|
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)
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
2019-01-19 12:13:45 +01:00
|
|
|
# BACKUP THE APP MAIN DIR
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backing up the main app directory..."
|
2017-03-01 19:37:00 +01:00
|
|
|
|
2017-03-19 18:31:53 +01:00
|
|
|
CHECK_SIZE "$final_path"
|
2017-09-05 00:24:01 +02:00
|
|
|
ynh_backup "$final_path"
|
2017-03-01 19:37:00 +01:00
|
|
|
|
|
|
|
#=================================================
|
2019-01-19 12:13:45 +01:00
|
|
|
# BACKUP NGINX CONFIGURATION
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backing up nginx web server configuration..."
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-09-05 00:24:01 +02:00
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-01-19 12:13:45 +01:00
|
|
|
# BACKUP PHP-FPM CONFIGURATION
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backing up php-fpm configuration..."
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2019-01-30 19:58:10 +01:00
|
|
|
ynh_backup "/etc/php/7.0/fpm/pool.d/$app.conf"
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-01-19 12:13:45 +01:00
|
|
|
# BACKUP THE MYSQL DATABASE
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backing up the MySQL database..." --weight=2
|
2015-11-22 14:37:01 +01:00
|
|
|
|
2017-06-13 17:11:10 +02:00
|
|
|
ynh_mysql_dump_db "$db_name" > db.sql
|
|
|
|
CHECK_SIZE "db.sql"
|
2016-06-29 00:13:30 +02:00
|
|
|
|
2017-12-11 20:37:45 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backing up fail2ban configuration"
|
2017-12-11 20:37:45 +01:00
|
|
|
|
|
|
|
ynh_backup "/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_backup "/etc/fail2ban/filter.d/$app.conf"
|
|
|
|
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
|
|
|
# SPECIFIC BACKUP
|
|
|
|
#=================================================
|
2019-01-19 12:13:45 +01:00
|
|
|
# BACKUP THE CRON FILE
|
2017-03-01 19:37:00 +01:00
|
|
|
#=================================================
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backing up cron file"
|
2017-06-13 17:11:10 +02:00
|
|
|
|
2017-09-05 00:24:01 +02:00
|
|
|
ynh_backup "/etc/cron.d/$app"
|
2019-01-30 16:15:24 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2019-03-12 20:09:45 +01:00
|
|
|
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last
|