2017-03-17 12:10:31 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
2017-03-17 12:10:31 +01:00
|
|
|
|
2022-07-03 04:33:56 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-10-08 21:05:06 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-03-17 12:10:31 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
2020-10-08 21:05:06 +02:00
|
|
|
#=================================================
|
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2024-01-04 22:26:37 +01:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2020-10-08 21:05:06 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE NGINX CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
2017-03-17 12:10:31 +01:00
|
|
|
|
2022-07-03 04:33:56 +02:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|