1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/kanboard_ynh.git synced 2024-09-03 19:36:17 +02:00
kanboard_ynh/scripts/backup
Jean-Baptiste Holcroft 8bb3d4f6dd Shellcheck
2017-10-19 15:40:50 +02:00

33 lines
735 B
Bash

#!/bin/bash
# Source local helpers
if [ ! -e _common.sh ]; then
# Get the _common.sh file if it's not in the current directory
cp ../settings/scripts/_common.sh ./_common.sh
chmod a+rx _common.sh
fi
# Source app helpers
source /usr/share/yunohost/helpers
# Abort script if errors
ynh_abort_if_errors
app=$YNH_APP_INSTANCE_NAME
# Set app specific variables
dbname=$app
# Retrieve app settings
domain=$(ynh_app_setting_get "$app" domain)
final_path=$(ynh_app_setting_get "$app" final_path)
# Copy the app source files
ynh_backup "$final_path"
# Copy the conf files
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf"
ynh_backup "/etc/php5/fpm/pool.d/${app}.conf"
# Dump the database
ynh_mysql_dump_db "$dbname" > ./db.sql