mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
34 lines
No EOL
1 KiB
Bash
34 lines
No EOL
1 KiB
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# The parameter $1 is the backup directory location dedicated to the app
|
|
BACKUP_DIR=$1
|
|
|
|
# The parameter $2 is the id of the app instance ex: strut__2
|
|
APP=$2
|
|
|
|
# retrieve useful param
|
|
domain=$(sudo yunohost app setting ${APP} domain)
|
|
db_pwd=$(sudo yunohost app setting ${APP} db_pwd)
|
|
|
|
# Backup app files
|
|
sudo mkdir -p "${BACKUP_DIR}/www"
|
|
sudo cp -a /var/www/$app/. "${BACKUP_DIR}/www"
|
|
|
|
# Backup conf files
|
|
sudo mkdir -p "${BACKUP_DIR}/conf"
|
|
sudo cp -a /etc/nginx/conf.d/$domain.d/$app.conf "${BACKUP_DIR}/conf/${APP}.conf"
|
|
sudo cp -a /etc/logrotate.d/${APP} "${BACKUP_DIR}/conf/${APP}"
|
|
sudo cp -a /etc/init.d/seafile-server "${BACKUP_DIR}/conf/seafile-server"
|
|
|
|
# Backup data
|
|
sudo mkdir -p "${BACKUP_DIR}/data"
|
|
sudo cp -a /home/yunohost.app/seafile-data/. "${BACKUP_DIR}/data"
|
|
|
|
# Backup mysql
|
|
mysqldump -u ${APP} -p$db_pwd ccnetdb | sudo dd of=${BACKUP_DIR}/ccnetdb.dmp
|
|
mysqldump -u ${APP} -p$db_pwd seafiledb | sudo dd of=${BACKUP_DIR}/seafiledb.dmp
|
|
mysqldump -u ${APP} -p$db_pwd seahubdb | sudo dd of=${BACKUP_DIR}/seahubdb.dmp
|
|
|
|
exit 0 |