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

109 lines
3.9 KiB
Text
Raw Normal View History

2019-06-06 06:04:22 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
#Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
2020-01-15 21:40:17 +01:00
ynh_print_info --message="Managing script failure..."
2019-06-06 06:04:22 +02:00
ynh_clean_setup () {
2019-08-06 21:18:00 +02:00
ynh_clean_check_starting
2019-06-06 06:04:22 +02:00
}
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
ynh_print_info --message="Loading installation settings..."
2019-06-06 06:04:22 +02:00
app=$YNH_APP_INSTANCE_NAME
final_path=$(ynh_app_setting_get --app=$app --key=final_path)
domain=$(ynh_app_setting_get --app=$app --key=domain)
#=================================================
# STANDARD BACKUP STEPS
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_print_info --message="Stopping a systemd service..."
2019-06-06 06:04:22 +02:00
2019-07-13 14:18:06 +02:00
ynh_systemd_action --service_name=$app-videobridge --action="stop" --log_path="/var/log/$app/$app-videobridge.log"
ynh_systemd_action --service_name=$app-jicofo --action="stop" --log_path="/var/log/$app/$app-jicofo.log"
2019-06-06 06:04:22 +02:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
ynh_print_info --message="Backing up the main app directory..."
2019-06-06 06:04:22 +02:00
ynh_backup --src_path="$final_path"
#=================================================
# BACKUP THE NGINX CONFIGURATION
#=================================================
ynh_print_info --message="Backing up nginx web server configuration..."
2019-06-06 06:04:22 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
#=================================================
# SPECIFIC BACKUP
2019-08-13 01:00:37 +02:00
#=================================================
2019-08-25 15:45:36 +02:00
# BACKUP METRONOME
2019-08-13 01:00:37 +02:00
#=================================================
2019-08-25 15:45:36 +02:00
ynh_print_info --message="Backing up Metronome..."
2019-08-13 01:00:37 +02:00
2019-08-25 15:45:36 +02:00
# Backup Metronome domain conf template
2019-08-25 03:40:54 +02:00
ynh_backup --src_path="/usr/share/yunohost/templates/jitsi/$domain.cfg.lua"
ynh_backup --src_path="/usr/share/yunohost/templates/jitsi/auth.$domain.cfg.lua"
2019-08-25 15:45:36 +02:00
# Backup Metronome Hook
2019-08-13 01:00:37 +02:00
ynh_backup --src_path="/usr/share/yunohost/hooks/conf_regen/50-metronome_$app"
2020-04-11 21:55:05 +02:00
#=================================================
# BACKUP THE APP CONFIG
#=================================================
ynh_print_info --message="Backing up the app config..."
ynh_backup --src_path="/etc/$app"
2020-01-15 21:40:17 +01:00
#=================================================
# SPECIFIC BACKUP
2019-06-06 06:04:22 +02:00
#=================================================
# BACKUP LOGROTATE
#=================================================
ynh_print_info --message="Backing up logrotate configuration..."
2019-06-06 06:04:22 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2019-07-14 01:17:46 +02:00
#=================================================
2019-06-06 06:04:22 +02:00
# BACKUP SYSTEMD
#=================================================
ynh_print_info --message="Backing up systemd configuration..."
2019-06-06 06:04:22 +02:00
2019-07-13 14:18:06 +02:00
ynh_backup --src_path="/etc/systemd/system/$app-videobridge.service"
ynh_backup --src_path="/etc/systemd/system/$app-jicofo.service"
2019-06-06 06:04:22 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_print_info --message="Starting a systemd service..."
2019-06-06 06:04:22 +02:00
2019-07-13 14:18:06 +02:00
ynh_systemd_action --service_name=$app-videobridge --action="start" --log_path="/var/log/$app/$app-videobridge.log"
ynh_systemd_action --service_name=$app-jicofo --action="start" --log_path="/var/log/$app/$app-jicofo.log"
2019-06-06 06:04:22 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."