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

69 lines
2.2 KiB
Text
Raw 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
2019-04-21 15:32:30 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_clean_setup () {
2022-03-13 18:11:28 +01:00
true
2019-10-24 04:11:14 +02:00
}
2019-04-21 15:32:30 +02:00
# Exit if an error occurs during the execution of the script
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_abort_if_errors
2019-04-21 15:32:30 +02:00
2017-10-20 13:09:26 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2024-01-08 13:13:58 +01:00
#REMOVEME? ynh_print_info --message="Loading installation settings..."
2017-10-20 13:09:26 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? app=$YNH_APP_INSTANCE_NAME
2017-10-20 13:09:26 +02:00
2024-01-08 13:13:58 +01:00
#REMOVEME? #REMOVEME? install_dir=$(ynh_app_setting_get --app=$app --key=install_dir)
#REMOVEME? data_dir=$(ynh_app_setting_get --app=$app --key=data_dir)
2017-10-20 13:09:26 +02:00
#=================================================
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
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
ynh_backup --src_path="/etc/logrotate.d/$app"
#=================================================
# BACKUP SYSTEMD
#=================================================
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)."