1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/roundcube_ynh.git synced 2024-09-03 20:16:28 +02:00
roundcube_ynh/scripts/backup
Jérôme Lebleu eb43d2e8c5 [enh] Initial commit for new app based on Kloadut/roundcube_ynh
Since sources where included in the last YunoHost app package, this
rebase is intended to have a lighter git repository.
2016-05-19 19:49:47 +02:00

28 lines
634 B
Bash

#!/bin/bash
# Retrieve arguments
backup_dir=$1
app=$2
# Set app specific variables
dbname=$app
dbuser=$app
# Source app helpers
. /usr/share/yunohost/helpers
# Retrieve app settings
domain=$(ynh_app_setting_get $app domain)
path=$(ynh_app_setting_get $app path)
dbpass=$(ynh_app_setting_get $app mysqlpwd)
# Copy the app files
DESTDIR="/var/www/$app"
sudo cp -a "$DESTDIR" ./sources
# Copy the conf files
sudo cp -a "/etc/nginx/conf.d/${domain}.d/${app}.conf" ./nginx.conf
sudo cp -a "/etc/php5/fpm/pool.d/${app}.conf" ./php-fpm.conf
# Dump the database
mysqldump -u "$dbuser" -p"$dbpass" --no-create-db "$dbname" > ./dump.sql