2020-03-01 11:28:28 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
2022-07-17 03:21:03 +02:00
|
|
|
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
|
2020-03-01 11:28:28 +01:00
|
|
|
source ../settings/scripts/_common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2020-11-27 10:49:00 +01:00
|
|
|
# DECLARE DATA AND CONF FILES TO BACKUP
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_print_info --message="Declaring files to be backed up..."
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BACKUP THE APP MAIN DIR
|
|
|
|
#=================================================
|
|
|
|
|
2024-01-17 11:23:28 +01:00
|
|
|
ynh_backup --src_path="$install_dir"
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-17 11:23:28 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
|
|
|
|
2024-01-17 11:23:28 +01:00
|
|
|
# Backup the PHP-FPM configuration
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_backup --src_path="/etc/php/$phpversion/fpm/pool.d/$app.conf"
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2024-01-17 11:23:28 +01:00
|
|
|
# Backup the nginx configuration
|
|
|
|
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
|
|
|
|
|
2020-03-01 11:28:28 +01:00
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
2020-11-27 10:49:00 +01:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|