1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monitorix_ynh.git synced 2024-09-03 19:46:06 +02:00
monitorix_ynh/scripts/backup

35 lines
887 B
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
#=================================================
# 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
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
domain=$(ynh_app_setting_get $app domain)
2017-01-31 21:26:13 +01:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
2017-01-05 23:37:07 +01:00
# Copy NGINX configuration
domain=$(ynh_app_setting_get "$app" domain)
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
2017-01-31 22:46:07 +01:00
ynh_backup "/etc/nginx/conf.d/monitorix_status.conf" "monitorix_status.conf"
2017-01-05 23:37:07 +01:00
# Copy Monitorix configuration
ynh_backup "/etc/monitorix" "config"
2017-02-13 16:17:53 +01:00
# Copy Monitorix data
ynh_backup "/var/lib/monitorix" "data"