mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
39 lines
1.1 KiB
Bash
39 lines
1.1 KiB
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source /usr/share/yunohost/helpers
|
|
ynh_abort_if_errors
|
|
|
|
#=================================================
|
|
# LOAD SETTINGS
|
|
#=================================================
|
|
|
|
app=$YNH_APP_INSTANCE_NAME
|
|
|
|
final_path=$(ynh_app_setting_get $app final_path)
|
|
domain=$(ynh_app_setting_get $app domain)
|
|
|
|
#=================================================
|
|
# STANDARD BACKUP STEPS
|
|
#=================================================
|
|
# BACKUP THE APP MAIN DIR
|
|
#=================================================
|
|
|
|
ynh_backup "$final_path"
|
|
|
|
#=================================================
|
|
# BACKUP THE CONFIGURATION
|
|
#=================================================
|
|
|
|
ynh_backup "/etc/systemd/system/$app.service" "conf/service"
|
|
ynh_backup "/etc/nginx/conf.d/$domain.d/$app.conf" "conf/nginx"
|
|
|
|
#=================================================
|
|
# BACKUP THE MONGODB DATABASE
|
|
#=================================================
|
|
|
|
mongodump -o "./dump"
|