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

43 lines
1.4 KiB
Text
Raw Permalink Normal View History

2017-10-20 13:09:26 +02:00
#!/bin/bash
#=================================================
2019-04-21 15:32:30 +02:00
# GENERIC START
2017-10-20 13:09:26 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-05-16 18:15:51 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-04-21 15:32:30 +02:00
source ../settings/scripts/_common.sh
2017-10-20 13:09:26 +02:00
source /usr/share/yunohost/helpers
#=================================================
2020-12-03 11:19:43 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2019-04-21 15:32:30 +02:00
2024-01-08 13:13:58 +01:00
ynh_backup --src_path="$install_dir"
2017-10-20 13:09:26 +02:00
2022-06-19 04:22:13 +02:00
#=================================================
# BACKUP THE DATA DIR
#=================================================
2024-01-08 13:13:58 +01:00
ynh_backup --src_path="$data_dir" --is_big
2022-06-19 04:22:13 +02:00
2019-04-21 15:32:30 +02:00
#=================================================
2024-07-06 10:17:33 +02:00
# SYSTEM CONFIGURATION
2019-04-21 15:32:30 +02:00
#=================================================
ynh_backup --src_path="/etc/logrotate.d/$app"
ynh_backup --src_path="/etc/systemd/system/$app.service"
#=================================================
# END OF SCRIPT
#=================================================
2021-05-16 18:15:51 +02:00
2019-04-21 15:32:30 +02:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."