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

36 lines
1.2 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
#=================================================
2022-06-29 03:45:27 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2019-03-04 16:23:36 +01:00
source /usr/share/yunohost/helpers
2017-08-28 16:34:15 +02:00
#=================================================
2021-02-13 19:19:24 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
#=================================================
ynh_print_info --message="Declaring files to be backed up..."
2017-08-28 16:34:15 +02:00
#=================================================
2022-06-29 03:45:27 +02:00
# BACKUP THE NGINX CONFIGURATION
2017-08-28 16:34:15 +02:00
#=================================================
2022-06-29 03:45:27 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2017-08-28 16:34:15 +02:00
#=================================================
2022-06-29 03:45:27 +02:00
# BACKUP VARIOUS FILES
2017-08-28 16:34:15 +02:00
#=================================================
2022-06-29 03:45:27 +02:00
ynh_backup --src_path="/etc/shellinabox"
ynh_backup --src_path="/etc/default/shellinabox"
2019-03-04 16:24:27 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2021-02-13 19:19:24 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."