2014-11-04 08:47:50 +00:00
|
|
|
#!/bin/bash
|
2015-10-27 15:03:21 +00:00
|
|
|
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
|
|
set -e
|
|
|
|
|
2016-03-18 17:05:41 +00:00
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
2014-11-04 08:47:50 +00:00
|
|
|
|
2016-04-26 13:30:49 +00:00
|
|
|
# The first argument is the backup directory location for the app
|
|
|
|
# from where the script is executed and which will be compressed afterward
|
|
|
|
backup_dir=$1
|
2014-11-04 08:47:50 +00:00
|
|
|
|
|
|
|
# Backup sources & data
|
2016-04-30 21:50:23 +00:00
|
|
|
sudo cp -a "/var/www/${app}" ./sources
|
2014-11-04 08:47:50 +00:00
|
|
|
|
2015-10-27 15:03:21 +00:00
|
|
|
# Backup mysql database if needed
|
|
|
|
# db_pwd=$(sudo yunohost app setting $app mysqlpwd)
|
2016-04-30 21:50:23 +00:00
|
|
|
# sudo mysqldump -u $app -p$db_pwd $app > ./dump.sql
|
2015-10-27 15:03:21 +00:00
|
|
|
|
2016-04-30 21:50:23 +00:00
|
|
|
# Copy NGINX configuration
|
|
|
|
domain=$(sudo yunohost app setting "$app" domain)
|
|
|
|
sudo cp -a "/etc/nginx/conf.d/${domain}.d/${app}.conf" ./nginx.conf
|
2015-10-10 19:28:09 +00:00
|
|
|
|
|
|
|
# If a dedicated php-fpm process is used :
|
|
|
|
# Copy dedicated php-fpm process to backup folder
|
|
|
|
#
|
2016-04-30 21:50:23 +00:00
|
|
|
#sudo cp -a "/etc/php5/fpm/pool.d/${app}.conf" ./php-fpm.conf
|