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
|
|
|
|
#=================================================
|
|
|
|
|
2021-05-16 16:15:54 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
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-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
|
|
|
#=================================================
|
|
|
|
|
2024-01-16 21:35:46 +01:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2017-03-01 19:37:00 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-16 21:35:46 +01:00
|
|
|
# SYSTEM 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
|
|
|
|
2024-01-16 21:35:46 +01:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-12-11 20:37:45 +01:00
|
|
|
|
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
|
|
|
|
2019-05-20 23:09:08 +02:00
|
|
|
ynh_backup --src_path="/etc/cron.d/$app"
|
2019-01-30 16:15:24 +01:00
|
|
|
|
2021-05-16 16:15:54 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE MYSQL DATABASE
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Backing up the MySQL database..."
|
|
|
|
|
|
|
|
ynh_mysql_dump_db --database="$db_name" > db.sql
|
|
|
|
|
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)."
|