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.1 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
#=================================================
2019-10-24 04:11:14 +02:00
ynh_clean_setup () {
2021-05-16 18:15:51 +02:00
ynh_clean_check_starting
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
ynh_abort_if_errors
2017-10-20 13:09:26 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-04-21 15:32:30 +02:00
ynh_print_info --message="Loading installation settings..."
2017-10-20 13:09:26 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-04-21 15:32:30 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
2019-10-25 01:55:03 +02:00
home_path=$(ynh_app_setting_get --app=$app --key=home_path)
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
ynh_backup --src_path="$final_path"
2017-10-20 13:09:26 +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"
2021-05-16 18:15:51 +02:00
#=================================================
# BACKUP THE HOME DIR
#=================================================
ynh_backup --src_path="$home_path" --is_big
2019-04-21 15:32:30 +02:00
#=================================================
# 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)."