2017-02-06 00:55:47 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# Source YNH helpers
|
|
|
|
. /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
# Get app instance name
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
|
|
|
|
# Retrieve arguments
|
2017-02-06 23:50:47 +01:00
|
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
path=$(ynh_app_setting_get $app path)
|
|
|
|
local_path=$(ynh_app_setting_get $app local_path)
|
2017-02-06 00:55:47 +01:00
|
|
|
|
|
|
|
# Copy the app files
|
|
|
|
ynh_backup "$local_path" "sources"
|
|
|
|
|
|
|
|
# Copy the conf files
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/nginx.conf"
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/php-fpm.conf"
|
|
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/php-fpm.ini"
|
|
|
|
|
|
|
|
# Save database
|
|
|
|
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
|
|
|
|
mysqldump -u "$app" -p"$dbpass" --no-create-db "$app" > ./dump.sql
|