1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/scripts/backup

68 lines
2.2 KiB
Text
Raw Normal View History

#!/bin/bash
2015-10-23 16:24:30 +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
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2023-03-06 13:24:53 +01:00
ynh_backup --src_path="$install_dir"
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
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-05-06 20:34:37 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
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
#=================================================
2022-10-19 00:46:33 +02:00
# BACKUP VARIOUS FILES
#=================================================
ynh_backup --src_path="/etc/cron.d/$app"
#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
ynh_print_info --message="Backing up the MySQL database..."
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)."