2014-11-23 20:22:15 +01:00
|
|
|
#!/bin/bash
|
2015-10-23 16:24:30 +02:00
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-10-19 00:46:33 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2019-02-15 19:49:22 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-10-19 12:13:47 +02:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2023-03-06 13:24:53 +01:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2014-11-23 20:22:15 +01:00
|
|
|
|
2023-10-24 09:38:45 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE DATA DIR
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# Only relevant if there is a "data_dir" resource for this app
|
|
|
|
ynh_backup --src_path="$data_dir" --is_big
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2017-10-21 22:52:21 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE PHP-FPM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2016-07-23 14:54:26 +02:00
|
|
|
|
2018-11-20 22:43:27 +01:00
|
|
|
#=================================================
|
|
|
|
# BACKUP FAIL2BAN CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
|
|
|
|
ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
|
2018-11-20 22:43:27 +01:00
|
|
|
|
2020-11-12 15:39:12 +01:00
|
|
|
#=================================================
|
2022-10-19 00:46:33 +02:00
|
|
|
# BACKUP VARIOUS FILES
|
2020-11-12 15:39:12 +01:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup --src_path="/etc/cron.d/$app"
|
|
|
|
|
2017-10-21 22:52:21 +02:00
|
|
|
#=================================================
|
|
|
|
# BACKUP THE MYSQL DATABASE
|
|
|
|
#=================================================
|
2020-11-12 15:39:12 +01:00
|
|
|
ynh_print_info --message="Backing up the MySQL database..."
|
2017-10-21 22:52:21 +02:00
|
|
|
|
2019-05-06 20:34:37 +02:00
|
|
|
ynh_mysql_dump_db --database="$db_name" > db.sql
|
2019-02-15 19:49:22 +01:00
|
|
|
|
2019-02-17 20:55:37 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2022-05-27 23:17:20 +02:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|