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

58 lines
1.8 KiB
Text
Raw Normal View History

2019-06-06 06:04:22 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2022-06-09 01:19:53 +02:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
2019-06-06 06:04:22 +02:00
source ../settings/scripts/_common.sh
source /usr/share/yunohost/helpers
#=================================================
2020-06-18 02:03:31 +02:00
# DECLARE DATA AND CONF FILES TO BACKUP
2019-06-06 06:04:22 +02:00
#=================================================
2020-06-18 02:03:31 +02:00
ynh_print_info --message="Declaring files to be backed up..."
2019-06-06 06:04:22 +02:00
#=================================================
# BACKUP THE APP MAIN DIR
#=================================================
2024-01-09 19:10:09 +01:00
ynh_backup --src_path="$install_dir"
2019-06-06 06:04:22 +02:00
#=================================================
2024-01-18 16:39:14 +01:00
# SYSTEM CONFIGURATION
2019-06-06 06:04:22 +02:00
#=================================================
2024-01-18 16:39:14 +01:00
# Backup the nginx configuration
2019-06-06 06:04:22 +02:00
ynh_backup --src_path="/etc/nginx/conf.d/$domain.d/$app.conf"
2024-01-18 16:39:14 +01:00
# Backup the systemd service units
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
2024-01-18 16:39:14 +01:00
# Backup the logrotate configuration
2019-06-06 06:04:22 +02:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2024-01-18 16:39:14 +01:00
# Backup the Fail2Ban config
ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
2019-06-06 06:04:22 +02:00
2022-02-03 03:00:20 +01:00
#=================================================
# BACKUP VARIOUS FILES
#=================================================
ynh_backup --src_path="/etc/$app/"
ynh_backup --src_path="/etc/prosody/conf.avail/$domain.cfg.lua"
2024-01-18 16:39:14 +01:00
ynh_backup --src_path="/var/log/$app/"
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)."