2017-01-05 23:37:07 +01:00
#!/bin/bash
2018-01-31 16:07:43 +01:00
#=================================================
# GENERIC START
#=================================================
2020-11-17 23:37:38 +01:00
# Import common cmd
source ../settings/scripts/experimental_helper.sh
source ../settings/scripts/_common.sh
2017-07-21 22:11:45 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
2017-01-05 23:37:07 +01:00
2017-07-21 22:11:45 +02:00
# Stop script if errors
ynh_abort_if_errors
2017-01-05 23:37:07 +01:00
2017-07-21 22:11:45 +02:00
# Retrieve arguments
2020-12-12 15:01:50 +01:00
ynh_print_info --message="Loading installation settings..."
2019-06-07 23:09:30 +02:00
domain=$(ynh_app_setting_get --app $app --key domain)
2017-01-31 21:26:13 +01:00
2022-11-02 23:07:44 +01:00
if [[ ! "$(systemctl status $app.service)" =~ "Active: inactive (dead)" ]]; then
ynh_print_warn --message="It's hightly recommended to make your backup when the service is stopped. Please stop $app service and with this command before to run the backup 'systemctl stop $app.service'"
fi
2018-01-31 16:07:43 +01:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
2017-01-05 23:37:07 +01:00
# Copy NGINX configuration
2020-12-12 15:01:50 +01:00
ynh_print_info --message="Backing up configuration..."
2019-06-07 23:09:30 +02:00
domain=$(ynh_app_setting_get --app $app --key domain)
ynh_backup --src_path "/etc/nginx/conf.d/${domain}.d/${app}.conf"
ynh_backup --src_path "/etc/nginx/conf.d/monitorix_status.conf"
2017-01-05 23:37:07 +01:00
2018-04-30 21:41:07 +02:00
# Copy hook
2019-06-07 23:09:30 +02:00
ynh_backup --src_path "/etc/yunohost/hooks.d/post_iptable_rules/50-$app"
2018-04-30 21:41:07 +02:00
2017-01-05 23:37:07 +01:00
# Copy Monitorix configuration
2019-06-07 23:09:30 +02:00
ynh_backup --src_path "/etc/monitorix"
2017-02-13 16:17:53 +01:00
# Copy Monitorix data
2020-12-12 15:01:50 +01:00
ynh_print_info --message="Backing up data..."
2022-11-02 23:07:44 +01:00
ynh_backup --src_path "/var/lib/monitorix" --is_big=1
2017-02-13 16:17:53 +01:00
2020-12-12 15:01:50 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."