2017-01-05 23:37:07 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-01-31 16:07:43 +01:00
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
|
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
|
|
|
# Import common cmd
|
2018-01-31 16:07:43 +01:00
|
|
|
source ../settings/scripts/experimental_helper.sh
|
2017-07-21 22:11:45 +02:00
|
|
|
source ../settings/scripts/_common.sh
|
2017-01-31 21:26:13 +01:00
|
|
|
|
2017-07-21 22:11:45 +02:00
|
|
|
# Retrieve arguments
|
2019-06-07 23:09:30 +02:00
|
|
|
ynh_script_progression --message="Loading installation settings..."
|
|
|
|
domain=$(ynh_app_setting_get --app $app --key domain)
|
2017-01-31 21:26:13 +01:00
|
|
|
|
2018-01-31 16:07:43 +01:00
|
|
|
#=================================================
|
|
|
|
# STANDARD BACKUP STEPS
|
|
|
|
#=================================================
|
2017-01-05 23:37:07 +01:00
|
|
|
|
|
|
|
# Copy NGINX configuration
|
2019-06-07 23:09:30 +02:00
|
|
|
ynh_script_progression --message="Backing up configuration..."
|
|
|
|
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
|
2019-06-07 23:09:30 +02:00
|
|
|
ynh_script_progression --message="Backing up data..." --weight=10
|
|
|
|
ynh_backup --src_path "/var/lib/monitorix"
|
2017-02-13 16:17:53 +01:00
|
|
|
|
2019-06-07 23:09:30 +02:00
|
|
|
ynh_script_progression --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)." --last
|