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

59 lines
1.5 KiB
Text
Raw Normal View History

2015-11-18 17:22:55 +01:00
#!/bin/bash
2017-09-11 08:29:58 +02:00
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
2017-09-11 08:29:58 +02:00
#=================================================
# LOAD SETTINGS
#=================================================
2017-09-11 12:05:16 +02:00
2017-09-11 08:29:58 +02:00
app=$YNH_APP_INSTANCE_NAME
final_path="/var/www/$app"
data_path="/home/yunohost.app/$app"
2017-09-11 08:29:58 +02:00
domain=$(ynh_app_setting_get $app domain)
db_name="$app"
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
2018-01-29 06:48:14 +01:00
ynh_backup "$final_path"
2015-11-18 17:22:55 +01:00
#=================================================
# BACKUP THE APP DATA
#=================================================
2018-01-29 06:48:14 +01:00
ynh_backup "$data_path"
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
2018-01-29 06:48:14 +01:00
ynh_backup "db.sql"
2015-11-18 17:22:55 +01:00
2017-09-11 08:29:58 +02:00
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
2018-01-29 06:48:14 +01:00
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf"
2017-09-11 08:29:58 +02:00
#=================================================
# BACKUP SYSTEMD
2017-09-11 08:29:58 +02:00
#=================================================
2018-01-29 06:48:14 +01:00
ynh_backup "/etc/systemd/system/$app.service"