1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tvheadend_ynh.git synced 2024-10-01 13:34:50 +02:00
tvheadend_ynh/scripts/backup

78 lines
2.9 KiB
Text
Raw Normal View History

2019-10-15 15:56:27 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Loading installation settings..." --weight=1
2019-10-15 15:56:27 +02:00
app=$YNH_APP_INSTANCE_NAME
domain=$(ynh_app_setting_get --app=$app --key=domain)
2019-10-16 13:19:40 +02:00
path_url=$(ynh_app_setting_get --app=$app --key=path)
2019-10-15 17:33:46 +02:00
superuser=$(ynh_app_setting_get --app=$app --key=superuser)
2019-10-15 15:56:27 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
port=$(ynh_app_setting_get --app=$app --key=port)
stream_port=$(ynh_app_setting_get --app=$app --key=stream_port)
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Stopping $app service..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app.log"
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Backing up $app config..." --weight=4
2019-10-15 15:56:27 +02:00
ynh_backup --src_path="$final_path"
ynh_backup --src_path="/etc/default/tvheadend"
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Backing up nginx web server configuration..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Backing up logrotate configuration..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
#=================================================
# START SYSTEMD SERVICE
#=================================================
2019-10-15 16:25:54 +02:00
ynh_script_progression --message="Starting $app service..." --weight=1
2019-10-15 15:56:27 +02:00
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --time --last