mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
3493b1fd52
Adds working upgrade
42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
#!/bin/bash
|
|
set -eu
|
|
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# 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
|
|
#=================================================
|
|
|
|
workdir=$(pwd)
|
|
cd $final_path
|
|
tar -czf $workdir/rocket.chat.gtar .
|
|
cd $workdir
|
|
ynh_backup ./rocket.chat.gtar
|
|
|
|
#=================================================
|
|
# 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
|
|
#=================================================
|
|
|
|
sudo mongodump -o "./dump"
|