mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
35 lines
793 B
Bash
35 lines
793 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
|
|
dbuser=$app
|
|
|
|
# Retrieve app settings
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
|
|
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
|