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

47 lines
1.4 KiB
Text
Raw Normal View History

2015-11-18 17:22:55 +01:00
#!/bin/bash
set -eu # exit on error ; treat unset variables as error
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
#=================================================
# LOAD SETTINGS
#=================================================
app=$YNH_APP_INSTANCE_NAME
final_path="/var/www/$app"
domain=$(ynh_app_setting_get $app domain)
db_name="$app"
2017-09-11 08:29:58 +02:00
default_backup_dir="${1}apps/$app"
backup_dir=${backup_dir:-"$default_backup_dir"}
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
ynh_backup "$final_path" "${backup_dir}$final_path"
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
#=================================================
# BACKUP THE DATABASE
#=================================================
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
ynh_mysql_dump_db "$db_name" > db.sql
ynh_backup "db.sql" "${backup_dir}/db.sql"
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "${backup_dir}/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# BACKUP SUPERVISOR CONFIG
#=================================================
ynh_backup "/etc/supervisor/conf.d/$app.conf" "${backup_dir}/etc/supervisor/conf.d/$app.conf"