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

85 lines
2.6 KiB
Text
Raw Normal View History

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-01-30 16:15:24 +01:00
ynh_script_progression --message="Load settings" --weight=2
2017-03-01 19:37:00 +01: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
#=================================================
2019-01-19 12:13:45 +01:00
# BACKUP THE APP MAIN DIR
2017-03-01 19:37:00 +01:00
#=================================================
2019-01-30 16:15:24 +01:00
ynh_script_progression --message="Backup the app main dir"
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-01-30 16:15:24 +01:00
ynh_script_progression --message="Backup nginx 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-01-30 16:15:24 +01:00
ynh_script_progression --message="Backup php-fpm configuration"
2015-11-22 14:37:01 +01:00
2017-09-05 00:24:01 +02:00
ynh_backup "/etc/php5/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-01-30 16:15:24 +01:00
ynh_script_progression --message="Backup 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"
2017-12-11 20:37:45 +01:00
#=================================================
# BACKUP FAIL2BAN CONFIGURATION
#=================================================
2019-01-30 16:15:24 +01:00
ynh_script_progression --message="Backup 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-01-30 16:15:24 +01:00
ynh_script_progression --message="Backup 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
#=================================================
ynh_script_progression --message="Backup completed" --last