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

67 lines
2.1 KiB
Text
Raw Normal View History

2017-10-26 13:01:33 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
2021-02-13 18:14:54 +01:00
# Keep this path for calling _common.sh inside the execution's context of backup and restore scripts
source ../settings/scripts/_common.sh
2017-10-26 13:01:33 +02:00
source /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
#=================================================
# LOAD SETTINGS
#=================================================
2021-02-13 18:14:54 +01:00
ynh_print_info --message="Loading installation settings..."
2017-10-26 13:01:33 +02:00
app=$YNH_APP_INSTANCE_NAME
2021-02-13 18:14:54 +01:00
port=$(ynh_app_setting_get --app=$app --key=port)
username=$(ynh_app_setting_get --app=$app --key=username)
password=$(ynh_app_setting_get --app=$app --key=password)
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# DECLARE DATA AND CONF FILES TO BACKUP
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
ynh_print_info --message="Declaring files to be backed up..."
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# BACKUP FAIL2BAN CONFIGURATION
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
#ynh_backup --src_path="/etc/fail2ban/jail.d/$app.conf"
#ynh_backup --src_path="/etc/fail2ban/filter.d/$app.conf"
2017-10-26 13:01:33 +02:00
#=================================================
# SPECIFIC BACKUP
#=================================================
# BACKUP LOGROTATE
#=================================================
2021-02-13 18:14:54 +01:00
ynh_backup --src_path="/etc/logrotate.d/$app"
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# BACKUP VARIOUS FILES
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# Backup the passwd file
ynh_backup --src_path="$password_file"
# Backup the config file
ynh_backup --src_path="$config_file"
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# END OF SCRIPT
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
ynh_print_info --message="Backup script completed for $app. (YunoHost will then actually copy those files to the archive)."