mirror of
https://github.com/YunoHost-Apps/ttrss_ynh.git
synced 2024-10-01 13:34:46 +02:00
24 lines
717 B
Bash
24 lines
717 B
Bash
#!/bin/bash
|
|
|
|
# The parameter $1 is the backup directory location dedicated to the app
|
|
backup_dir=$1
|
|
|
|
# The parameter $2 is theid of the app instance
|
|
app=$2
|
|
|
|
domain=$(sudo yunohost app setting $app domain)
|
|
path=$(sudo yunohost app setting $app path)
|
|
|
|
# Copy the app files
|
|
final_path=/var/www/$app
|
|
sudo mkdir -p ${backup_dir}/var/www
|
|
sudo cp -a $final_path "${backup_dir}/var/www/$app"
|
|
|
|
# Copy the conf files
|
|
sudo mkdir -p "${backup_dir}/conf"
|
|
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf "${backup_dir}/conf/nginx.conf"
|
|
sudo cp -a /etc/cron.d/$app "${backup_dir}/conf/cron"
|
|
|
|
# Backup db
|
|
root_pwd=$(sudo cat /etc/yunohost/mysql)
|
|
sudo su -c "mysqldump -u root -p$root_pwd --no-create-db $app > ${backup_dir}/db.sql"
|