mirror of
https://github.com/YunoHost-Apps/bozon_ynh.git
synced 2024-09-03 18:16:09 +02:00
22 lines
580 B
Bash
22 lines
580 B
Bash
#! /bin/bash
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
set -e
|
|
|
|
# definie useful vars
|
|
app=bozon
|
|
parent_path=/var/www
|
|
final_path=$parent_path/$app
|
|
data_path=/home/yunohost.app/$app
|
|
|
|
#retrieve arguments
|
|
save_path=$1
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
|
|
# backup sources & data
|
|
sudo cp -R $final_path/. $save_path/www/
|
|
sudo cp -R $data_path/. $save_path/datas/
|
|
|
|
# backup Nginx and YunoHost parameters
|
|
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
|