1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ofbiz_ynh.git synced 2024-09-03 19:46:33 +02:00
ofbiz_ynh/scripts/backup

15 lines
481 B
Text
Raw Normal View History

2022-02-28 23:39:48 +01:00
#!/bin/bash
2022-03-01 00:11:09 +01:00
app=ynhexample
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# The parameter $1 is the backup directory location
# which will be compressed afterward
backup_dir=$1/apps/$app
mkdir -p $backup_dir
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# Backup sources & data
sudo cp -a /var/www/$app/. $backup_dir/sources
2022-02-28 23:39:48 +01:00
2022-03-01 00:11:09 +01:00
# Copy Nginx and YunoHost parameters to make the script "standalone"
sudo cp -a /etc/yunohost/apps/$app/. $backup_dir/yunohost
domain=$(sudo yunohost app setting $app domain)
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf $backup_dir/nginx.conf