1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bozon_ynh.git synced 2024-09-03 18:16:09 +02:00
bozon_ynh/scripts/backup

49 lines
1.6 KiB
Text
Raw Normal View History

#!/bin/bash
2022-09-18 03:17:45 +02:00
2020-01-05 19:49:24 +01:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-07-28 03:39:57 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2020-01-05 19:49:24 +01:00
source ../settings/scripts/_common.sh
2016-10-13 06:51:38 +02:00
source /usr/share/yunohost/helpers
2016-05-23 21:40:55 +02:00
2020-01-05 19:49:24 +01:00
#=================================================
2022-07-28 03:39:57 +02:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2020-01-05 19:49:24 +01:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2022-07-28 03:39:57 +02:00
2023-10-03 23:43:58 +02:00
ynh_backup --src_path="$install_dir"
2022-07-28 03:39:57 +02:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2023-10-03 23:43:58 +02:00
ynh_backup --src_path="$data_dir" --is_big
2022-07-28 03:39:57 +02:00
2020-01-05 19:49:24 +01:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2022-07-28 03:39:57 +02:00
2020-01-05 19:49:24 +01:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# BACKUP THE PHP-FPM CONFIGURATION
#=================================================
2016-03-23 19:30:43 +01:00
2022-07-28 03:39:57 +02:00
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
#=================================================
2020-01-05 19:49:24 +01:00
# SPECIFIC BACKUP
#=================================================
2022-07-28 03:39:57 +02:00
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."