1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flood_ynh.git synced 2024-09-03 18:36:20 +02:00
flood_ynh/scripts/backup

27 lines
746 B
Text
Raw Normal View History

2017-07-15 11:39:52 +02:00
#!/bin/bash
2017-07-19 22:40:54 +02:00
# Exit on command errors and treat unset variables as an error
2017-07-15 11:39:52 +02:00
set -eu
2017-07-19 22:40:54 +02:00
# See comments in install script
2017-07-15 11:39:52 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-07-19 22:40:54 +02:00
# Source YunoHost helpers
source /usr/share/yunohost/helpers
2017-07-15 11:39:52 +02:00
2017-07-19 22:40:54 +02:00
# Backup sources & data
# Note: the last argument is where to save this path, see the restore script.
ynh_backup "/var/www/${app}" "sources"
### MySQL (remove if not used) ###
# If a MySQL database is used:
# # 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
### MySQL end ###
# Copy NGINX configuration
domain=$(ynh_app_setting_get "$app" domain)
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"