2014-11-04 08:47:50 +00:00
|
|
|
|
#!/bin/bash
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# Exit on command errors and treat unset variables as an error
|
|
|
|
|
set -eu
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# See comments in install script
|
2016-03-18 17:05:41 +00:00
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-11-04 08:47:50 +00:00
|
|
|
|
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# Source YunoHost helpers
|
|
|
|
|
. /usr/share/yunohost/helpers
|
2014-11-04 08:47:50 +00:00
|
|
|
|
|
|
|
|
|
# Backup sources & data
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# Note: the last argument is where to save this path, see the restore script.
|
|
|
|
|
ynh_backup "/var/www/${app}" "sources"
|
2014-11-04 08:47:50 +00:00
|
|
|
|
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### MySQL (remove if not used) ###
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# If a MySQL database is used:
|
|
|
|
|
# # Dump the database
|
|
|
|
|
# dbname=$app
|
|
|
|
|
# dbuser=$app
|
|
|
|
|
# dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
|
|
|
|
|
# mysqldump -u "$dbuser" -p"$dbpass" --no-create-db "$dbname" > ./dump.sql
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### MySQL end ###
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
2016-04-30 21:50:23 +00:00
|
|
|
|
# Copy NGINX configuration
|
2016-05-18 20:31:45 +00:00
|
|
|
|
domain=$(ynh_app_setting_get "$app" domain)
|
|
|
|
|
ynh_backup "/etc/nginx/conf.d/${domain}.d/${app}.conf" "nginx.conf"
|
2015-10-10 19:28:09 +00:00
|
|
|
|
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### PHP (remove if not used) ###
|
2016-05-18 20:31:45 +00:00
|
|
|
|
# If a dedicated php-fpm process is used:
|
|
|
|
|
# # Copy PHP-FPM pool configuration
|
|
|
|
|
# ynh_backup "/etc/php5/fpm/pool.d/${app}.conf" "php-fpm.conf"
|
2016-06-14 12:09:29 +00:00
|
|
|
|
### PHP end ###
|