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

80 lines
2.5 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
#=================================================
2020-11-25 20:55:09 +01:00
ynh_print_info --message="Loading installation settings..."
2017-03-01 19:37:00 +01:00
app=$YNH_APP_INSTANCE_NAME
2016-12-14 16:08:29 +01:00
2019-05-20 23:09:08 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
2020-11-25 20:55:09 +01:00
phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
2020-11-25 21:07:33 +01:00
db_name=$(ynh_app_setting_get --app=$app --key=db_name)
2017-03-01 19:37:00 +01:00
#=================================================
2020-11-25 20:55:09 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-03-01 19:37:00 +01:00
#=================================================
2019-01-19 12:13:45 +01:00
# BACKUP THE APP MAIN DIR
2017-03-01 19:37:00 +01:00
#=================================================
2019-05-20 23:09:08 +02:00
ynh_backup --src_path="$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
#=================================================
2015-11-22 14:37:01 +01:00
2019-05-20 23:09:08 +02:00
ynh_backup --src_path="/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
#=================================================
2015-11-22 14:37:01 +01:00
2020-11-25 20:55:09 +01:00
ynh_backup --src_path="/etc/php/$phpversion/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
#=================================================
2015-11-22 14:37:01 +01:00
2019-05-20 23:09:08 +02:00
ynh_mysql_dump_db --database="$db_name" > db.sql
2017-12-11 20:37:45 +01:00
#=================================================
# BACKUP FAIL2BAN CONFIGURATION
#=================================================
2019-05-20 23:09:08 +02:00
ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
2017-12-11 20:37:45 +01:00
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
#=================================================
2017-06-13 17:11:10 +02:00
2019-05-20 23:09:08 +02:00
ynh_backup --src_path="/etc/cron.d/$app"
2019-01-30 16:15:24 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2020-11-25 20:55:09 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."