1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/transmission_ynh.git synced 2024-09-04 01:46:12 +02:00
transmission_ynh/scripts/backup

67 lines
2.1 KiB
Text
Raw Normal View History

2016-05-14 10:06:20 +02:00
#!/bin/bash
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
# GENERIC START
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
# IMPORT GENERIC HELPERS
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-05-01 13:24:56 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
2016-05-14 10:06:20 +02:00
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
# MANAGE SCRIPT FAILURE
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-06-13 23:37:51 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-12-14 11:36:02 +01:00
ynh_print_info --message="Loading installation settings..."
2016-05-14 10:06:20 +02:00
app=$YNH_APP_INSTANCE_NAME
2019-05-01 13:24:56 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
2022-07-03 20:36:04 +02:00
datadir=$(ynh_app_setting_get --app=$app --key=datadir)
2017-06-13 23:37:51 +02:00
#=================================================
2020-12-14 11:36:02 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-06-13 23:37:51 +02:00
#=================================================
2022-07-03 20:36:04 +02:00
# BACKUP THE DATA DIR
#=================================================
ynh_backup --src_path="$datadir" --is_big
#=================================================
# BACKUP THE NGINX CONFIGURATION
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-06-13 23:37:51 +02:00
#=================================================
# SPECIFIC BACKUP
#=================================================
2022-07-03 20:36:04 +02:00
# BACKUP VARIOUS FILES
2017-06-13 23:37:51 +02:00
#=================================================
2019-05-01 13:24:56 +02:00
ynh_backup --src_path="/etc/transmission-daemon/settings.json"
2020-03-03 19:06:26 +01:00
if [ -e /proc/sys/net/core/rmem_max ]
then
2022-07-03 20:36:04 +02:00
ynh_backup --src_path="/etc/sysctl.d/90-transmission.conf"
2020-03-03 19:06:26 +01:00
fi
2016-05-14 10:06:20 +02:00
2019-05-01 13:24:56 +02:00
ynh_backup --src_path="/usr/share/transmission"
ynh_backup --src_path="/var/lib/transmission-daemon"
2016-05-14 10:06:20 +02:00
2019-05-01 13:24:56 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2020-12-14 11:36:02 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."