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

81 lines
2.6 KiB
Text
Raw Normal View History

#!/bin/bash
2017-10-14 15:55:02 +02:00
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2020-07-25 23:14:14 +02:00
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2017-10-14 15:55:02 +02:00
source /usr/share/yunohost/helpers
2017-10-14 15:55:02 +02:00
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2017-10-14 15:55:02 +02:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-10-14 15:55:02 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2020-07-25 23:14:14 +02:00
ynh_print_info --message="Loading installation settings..."
2017-10-14 15:55:02 +02:00
app=$YNH_APP_INSTANCE_NAME
2020-07-25 23:14:14 +02:00
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
#=================================================
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-10-14 15:55:02 +02:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2020-07-25 23:14:14 +02:00
ynh_backup --src_path="$final_path"
2017-10-14 15:55:02 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2020-07-25 23:14:14 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-10-14 15:55:02 +02:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
2020-07-25 23:14:14 +02:00
# FIXME Currently, the log is only redirected to syslog.
ynh_backup --src_path="/etc/logrotate.d/$app"
2017-10-14 15:55:02 +02:00
2017-11-29 15:42:21 +01:00
#=================================================
# BACKUP DATADIR DIRECTORY
#=================================================
2020-07-25 23:14:14 +02:00
ynh_backup --src_path="/home/yunohost.app/$app"
2017-11-29 15:42:21 +01:00
#=================================================
# BACKUP BINARY
#=================================================
2020-07-25 23:14:14 +02:00
ynh_backup --src_path="/usr/bin/$app"
2017-11-29 15:42:21 +01:00
2017-10-14 15:55:02 +02:00
#=================================================
# BACKUP SYSTEMD
#=================================================
2020-07-25 23:14:14 +02:00
ynh_backup --src_path="/etc/systemd/system/$app.service"
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."