1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/bozon_ynh.git synced 2024-09-03 18:16:09 +02:00
bozon_ynh/scripts/backup

22 lines
532 B
Text
Raw Normal View History

2016-03-23 19:30:43 +01:00
#! /bin/bash
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
set -e
2016-04-04 20:01:54 +02:00
# definie useful vars
2016-03-23 19:30:43 +01:00
app=bozon
2016-04-04 20:01:54 +02:00
parent_path=/var/www
final_path=$parent_path/$app
#retrieve arguments
2016-03-23 19:30:43 +01:00
save_path=$1
2016-04-04 20:01:54 +02:00
domain=$(sudo yunohost app setting $app domain)
2016-03-23 19:30:43 +01:00
# Backup sources & data
2016-04-04 20:01:54 +02:00
sudo cp -R $final_path $save_path/$app
2016-03-23 19:30:43 +01:00
# Copy Nginx and YunoHost parameters to make the script "standalone"
2016-04-04 20:01:54 +02:00
sudo cp -a /etc/yunohost/apps/$app/. $save_path/yunohost
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf $save_path/nginx.conf