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/restore

89 lines
3.2 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_script_progression --message="Loading installation settings..." --weight=1
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
#=================================================
# STANDARD RESTORATION STEPS
#=================================================
2021-02-13 18:14:54 +01:00
# RESTORE FAIL2BAN CONFIGURATION
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
ynh_script_progression --message="Restoring the Fail2Ban configuration..." --weight=1
2017-10-26 13:01:33 +02:00
2021-02-13 18:14:54 +01:00
#ynh_restore_file "/etc/fail2ban/jail.d/$app.conf"
#ynh_restore_file "/etc/fail2ban/filter.d/$app.conf"
#ynh_systemd_action --action=restart --service_name=fail2ban
2017-10-26 13:01:33 +02:00
#=================================================
# SPECIFIC RESTORATION
#=================================================
# REINSTALL DEPENDENCIES
#=================================================
2021-02-13 18:14:54 +01:00
ynh_script_progression --message="Reinstalling dependencies..." --weight=20
2017-10-26 13:01:33 +02:00
2021-02-27 18:28:49 +01:00
ynh_install_extra_app_dependencies --repo="$extra_repo" --package="$pkg_dependencies" --key="$extra_repo_key" --name="$app"
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# INTEGRATE SERVICE IN YUNOHOST
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2017-10-26 13:01:33 +02:00
2021-02-13 18:14:54 +01:00
yunohost service add $app --description="Allows MQTT clients to send/receive data" --log="/var/log/$app/$app.log" --needs_exposed_ports="$port"
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# RESTORE VARIOUS FILES
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
ynh_script_progression --message="Restoring the Mosquitto configuration..." --weight=1
2017-10-26 13:01:33 +02:00
2021-02-13 18:14:54 +01:00
# Restore the passwd file
ynh_restore_file --origin_path="$password_file"
# Restore the config file
ynh_restore_file --origin_path="$config_file"
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# RESTART SYSTEMD SERVICE
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
ynh_script_progression --message="Restarting systemd service..." --weight=1
2017-10-26 13:01:33 +02:00
2021-02-13 18:14:54 +01:00
ynh_systemd_action --service_name="$app" --action=restart
2017-10-26 13:01:33 +02:00
#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
2021-02-13 18:14:54 +01:00
ynh_script_progression --message="Restoring the log rotation..." --weight=1
2017-10-26 13:01:33 +02:00
2021-02-13 18:14:54 +01:00
ynh_restore_file --origin_path="/etc/logrotate.d/$app"
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_script_progression --message="Restoration completed for $app" --last