2016-06-28 16:29:29 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
2016-12-18 01:13:17 +01:00
|
|
|
set -eu
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2016-06-28 16:29:29 +02:00
|
|
|
|
|
|
|
# Set app specific variables
|
2016-12-18 01:13:17 +01:00
|
|
|
dbname=$app
|
|
|
|
dbuser=$app
|
2016-06-28 16:29:29 +02:00
|
|
|
|
|
|
|
# Source app helpers
|
2017-02-21 23:23:45 +01:00
|
|
|
source /usr/share/yunohost/helpers
|
2016-06-28 16:29:29 +02:00
|
|
|
|
|
|
|
# Retrieve app settings
|
2016-12-18 01:13:17 +01:00
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
path=$(ynh_app_setting_get "$app" path)
|
|
|
|
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
|
2016-06-28 16:29:29 +02:00
|
|
|
|
|
|
|
# Copy the app files
|
2016-12-18 01:13:17 +01:00
|
|
|
DESTDIR="/var/www/$app"
|
|
|
|
ynh_backup "$DESTDIR" "sources"
|
2016-06-28 16:29:29 +02:00
|
|
|
|
|
|
|
# Copy the conf files
|
2016-12-18 01:13:17 +01:00
|
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|
2017-02-21 23:23:45 +01:00
|
|
|
|
2017-02-21 00:52:37 +01:00
|
|
|
# Copy dedicated php-fpm process to backup folder
|
2017-02-21 23:23:45 +01:00
|
|
|
ynh_backup "/etc/php5/fpm/pool.d/${app}.conf" "php-fpm.conf"
|
2016-06-28 16:29:29 +02:00
|
|
|
|
|
|
|
# Dump the database
|
2017-02-21 19:16:43 +01:00
|
|
|
mysqldump -u "$dbuser" -p"$dbpass" --no-create-db "$dbname" > ./db.sql
|
|
|
|
ynh_backup "db.sql" "dump.sql"
|