2016-11-30 17:49:37 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2017-03-19 18:28:38 +01:00
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2021-02-25 23:05:04 +01:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2018-07-13 17:33:05 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2016-11-30 17:49:37 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2017-03-19 18:28:38 +01:00
|
|
|
|
|
|
|
#=================================================
|
2020-12-03 18:24:29 +01:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
|
|
|
#=================================================
|
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
|
|
|
|
2017-03-19 18:28:38 +01:00
|
|
|
#=================================================
|
2019-01-13 17:49:15 +01:00
|
|
|
# BACKUP THE APP MAIN DIR
|
2017-03-19 18:28:38 +01:00
|
|
|
#=================================================
|
|
|
|
|
2024-02-14 13:31:37 +01:00
|
|
|
ynh_backup --src_path="$install_dir" --not_mandatory
|
2016-11-30 17:49:37 +01:00
|
|
|
|
2017-03-19 18:28:38 +01:00
|
|
|
#=================================================
|
2024-03-19 00:08:28 +01:00
|
|
|
# BACKUP THE SYSTEM CONFIGURATION
|
2017-03-19 18:28:38 +01:00
|
|
|
#=================================================
|
2016-11-30 17:49:37 +01:00
|
|
|
|
2019-05-28 00:28:01 +02:00
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
2016-11-30 17:49:37 +01:00
|
|
|
|
2019-01-30 15:56:18 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-12-03 18:24:29 +01:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|