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

49 lines
1.6 KiB
Text
Raw Normal View History

#!/bin/bash
2017-08-28 16:34:15 +02:00
#=================================================
# GENERIC START
#=================================================
2019-03-04 16:23:36 +01:00
# IMPORT GENERIC HELPERS
2017-08-28 16:34:15 +02:00
#=================================================
2019-03-04 16:23:36 +01:00
source /usr/share/yunohost/helpers
2017-08-28 16:34:15 +02:00
#=================================================
2019-03-04 16:23:36 +01:00
# MANAGE SCRIPT FAILURE
2017-08-28 16:34:15 +02:00
#=================================================
2019-03-04 16:23:36 +01:00
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-08-28 16:34:15 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2019-05-20 17:03:46 +02:00
ynh_script_progression --message="Loading installation settings..."
2016-05-07 02:00:48 +02:00
2017-04-20 19:34:26 +02:00
app=$YNH_APP_INSTANCE_NAME
2016-05-07 02:00:48 +02:00
2019-05-20 17:03:46 +02:00
domain=$(ynh_app_setting_get --app=$app --key=domain)
2017-08-28 16:34:15 +02:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2019-05-20 17:03:46 +02:00
ynh_script_progression --message="Backing up the main app directory..."
2017-08-28 16:34:15 +02:00
2019-05-20 17:03:46 +02:00
ynh_backup --src_path="/etc/shellinabox"
ynh_backup --src_path="/etc/default/shellinabox"
2017-08-28 16:34:15 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2019-05-20 17:03:46 +02:00
ynh_script_progression --message="Backing up nginx web server configuration..."
2019-05-20 17:03:46 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2019-03-04 16:24:27 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2019-05-20 17:03:46 +02:00
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last