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

31 lines
798 B
Text
Raw Normal View History

2016-11-29 00:20:02 +01:00
#!/bin/bash
2016-07-05 15:22:12 +02:00
# Exit on command errors and treat unset variables as an error
set -eu
2017-05-18 23:28:18 +02:00
source /usr/share/yunohost/helpers
#source _future.sh
source ../settings/scripts/_common.sh
2016-07-05 15:22:12 +02:00
app=$YNH_APP_INSTANCE_NAME
2017-05-18 23:28:18 +02:00
domain=$(ynh_app_setting_get "$app" domain)
odoo_version=$(ynh_app_setting_get "$app" odoo_version)
2016-07-05 15:22:12 +02:00
2017-05-18 23:28:18 +02:00
define_paths
2016-07-05 15:22:12 +02:00
# Backup sources & data
2017-05-18 23:28:18 +02:00
ynh_backup "${source_path}addons" "$1${source_path}addons"
# Backup configuration
ynh_backup "$conf_file" "$1$conf_file"
2016-07-05 15:22:12 +02:00
# Copy NGINX configuration
2017-05-18 23:28:18 +02:00
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "etc/nginx/conf.d/${domain}.d/${app}.conf"
# Save postgresql conf
ynh_backup "/etc/postgresql/9.4/main/pg_hba.conf" "etc/postgresql/9.4/main/pg_hba.conf"
2016-07-05 15:22:12 +02:00
# Copy database
database=${domain//./-}
sudo su -c "pg_dump $database" postgres > ./dump.sql