2014-11-04 03:47:50 -05:00
|
|
|
#!/bin/bash
|
2015-10-27 11:03:21 -04:00
|
|
|
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
|
|
set -e
|
|
|
|
|
2016-04-26 09:30:49 -04:00
|
|
|
# The last argument is the app instance name
|
|
|
|
app=${!#}
|
2014-11-04 03:47:50 -05:00
|
|
|
|
2016-04-26 09:30:49 -04: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 03:47:50 -05:00
|
|
|
|
|
|
|
# Backup sources & data
|
2016-04-30 17:50:23 -04:00
|
|
|
sudo cp -a "/var/www/${app}" ./sources
|
2014-11-04 03:47:50 -05:00
|
|
|
|
2015-10-27 11:03:21 -04:00
|
|
|
# Backup mysql database if needed
|
|
|
|
# db_pwd=$(sudo yunohost app setting $app mysqlpwd)
|
2016-04-30 17:50:23 -04:00
|
|
|
# sudo mysqldump -u $app -p$db_pwd $app > ./dump.sql
|
2015-10-27 11:03:21 -04:00
|
|
|
|
2016-04-30 17:50:23 -04: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 15:28:09 -04:00
|
|
|
|
|
|
|
# If a dedicated php-fpm process is used :
|
|
|
|
# Copy dedicated php-fpm process to backup folder
|
|
|
|
#
|
2016-04-30 17:50:23 -04:00
|
|
|
#sudo cp -a "/etc/php5/fpm/pool.d/${app}.conf" ./php-fpm.conf
|