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

41 lines
1.3 KiB
Text
Raw Normal View History

2017-11-01 20:57:58 +01:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-07-16 19:44:33 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2018-07-13 17:31:45 +02:00
source ../settings/scripts/_common.sh
2017-11-01 20:57:58 +01:00
source /usr/share/yunohost/helpers
#=================================================
2022-07-16 19:44:33 +02:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-11-01 20:57:58 +01:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2024-03-29 12:47:49 +01:00
ynh_backup --src_path="$install_dir"
2017-11-01 20:57:58 +01:00
#=================================================
2024-03-29 12:47:49 +01:00
# BACKUP SYSTEM
2017-11-01 20:57:58 +01:00
#=================================================
2019-05-26 17:00:09 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2017-11-01 20:57:58 +01:00
2024-03-29 12:47:49 +01:00
ynh_backup --src_path="/etc/cron.d/$app"
2017-11-01 20:57:58 +01:00
#=================================================
2022-07-16 19:44:33 +02:00
# BACKUP VARIOUS FILES
2017-11-01 20:57:58 +01:00
#=================================================
2024-03-29 12:47:49 +01:00
ynh_backup --src_path="/var/log/$app/"
2019-01-30 16:07:38 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-11-20 19:30:30 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."