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
|
|
|
|
#=================================================
|
|
|
|
|
2019-07-18 22:00:55 +02:00
|
|
|
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."
|