2016-05-04 14:17:07 +02:00
|
|
|
#!/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
|
2016-05-04 14:17:07 +02:00
|
|
|
|
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"
|
2016-05-04 14:17:07 +02:00
|
|
|
|
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
|
|
|
#=================================================
|
2016-05-04 14:17:07 +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)."
|