mirror of
https://github.com/YunoHost-Apps/monitorix_ynh.git
synced 2024-09-03 19:46:06 +02:00
dd2a128e76
While we run yunohost firewall reload the monitorix rules (for stats) are remove. We add a hook to fix that
37 lines
966 B
Bash
Executable file
37 lines
966 B
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
|
|
# Source YunoHost helpers
|
|
source /usr/share/yunohost/helpers
|
|
|
|
# Stop script if errors
|
|
ynh_abort_if_errors
|
|
|
|
# Import common cmd
|
|
source ../settings/scripts/experimental_helper.sh
|
|
source ../settings/scripts/_common.sh
|
|
|
|
# Retrieve arguments
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
#=================================================
|
|
# STANDARD BACKUP STEPS
|
|
#=================================================
|
|
|
|
# Copy NGINX configuration
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|
|
ynh_backup "/etc/nginx/conf.d/monitorix_status.conf" "monitorix_status.conf"
|
|
|
|
# Copy hook
|
|
ynh_backup "/usr/share/yunohost/hooks/post_iptable_rules/50-$app"
|
|
|
|
# Copy Monitorix configuration
|
|
ynh_backup "/etc/monitorix" "config"
|
|
|
|
# Copy Monitorix data
|
|
ynh_backup "/var/lib/monitorix" "data"
|
|
|