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

43 lines
1 KiB
Text
Raw Normal View History

2017-01-05 23:37:07 +01:00
#!/bin/bash
2017-01-31 21:26:13 +01:00
######## Actually we cant use common script in backup / restore script see this issue for more informations : https://dev.yunohost.org/issues/621
# # Import common cmd
# source ./_common.sh
#
2017-01-05 23:37:07 +01:00
2017-01-31 21:26:13 +01:00
######## We implement manually this fonctions
2017-01-05 23:37:07 +01:00
2017-01-31 21:26:13 +01:00
init_script() {
# Exit on command errors and treat unset variables as an error
set -eu
# Source YunoHost helpers
source /usr/share/yunohost/helpers
# Retrieve arguments
app=$YNH_APP_INSTANCE_NAME
}
######## End of common fonctions
# Init script
init_script
2017-01-05 23:37:07 +01:00
# # Dump the database
dbname=$app
dbuser=$app
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
mysqldump -u "$dbuser" -p"$dbpass" --no-create-db "$dbname" > ./dump.sql
# 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"