mirror of
https://github.com/YunoHost-Apps/ttrss_ynh.git
synced 2024-10-01 13:34:46 +02:00
26 lines
715 B
Bash
26 lines
715 B
Bash
#!/bin/bash
|
|
|
|
# causes the shell to exit if any subcommand or pipeline returns a non-zero status
|
|
set -e
|
|
|
|
# The parameter $1 is the backup directory location dedicated to the app
|
|
backup_dir=$1
|
|
|
|
# The last parameter is the id of the app instance
|
|
app=${!#}
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
path=$(sudo yunohost app setting $app path)
|
|
|
|
# Copy the app files
|
|
final_path="/var/www/$app"
|
|
ynh_backup "$final_path" "./www"
|
|
|
|
# Copy the conf files
|
|
sudo mkdir -p ./conf
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "./conf/nginx.conf"
|
|
ynh_backup "/etc/cron.d/$app" "./conf/cron"
|
|
|
|
# Backup db
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ./db.sql"
|