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

68 lines
2.4 KiB
Text
Raw Normal View History

2017-10-26 13:01:33 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2021-02-13 18:14:54 +01:00
# STANDARD UPGRADE STEPS
2022-06-20 01:41:47 +02:00
#=================================================
# STOP SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Stopping a systemd service..."
2024-01-19 17:14:28 +01:00
ynh_systemd_action --service_name="$app" --action="stop"
2022-06-20 01:41:47 +02:00
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
2023-12-13 00:28:26 +01:00
# Transfer and delete the old "password" key
2024-01-19 17:14:28 +01:00
if [ -z "${userpass:-}" ]; then
userpass="$password"
ynh_app_setting_set --app="$app" --key="userpass" --value="$userpass"
ynh_app_setting_delete --app="$app" --key="password"
2023-12-13 00:28:26 +01:00
fi
2017-10-26 13:01:33 +02:00
#=================================================
2021-02-13 18:14:54 +01:00
# SPECIFIC UPGRADE
2017-10-26 13:01:33 +02:00
#=================================================
2022-06-20 01:41:47 +02:00
# UPDATE A CONFIG FILE
2017-10-26 13:01:33 +02:00
#=================================================
2022-06-20 01:41:47 +02:00
ynh_script_progression --message="Updating a configuration file..." --weight=1
2017-10-26 13:01:33 +02:00
2023-12-13 00:28:26 +01:00
ynh_add_config --template="mosquitto.conf" --destination="/etc/mosquitto/conf.d/default.conf"
ynh_add_config --template="passwd" --destination="/etc/mosquitto/passwd"
2022-06-20 01:41:47 +02:00
mosquitto_passwd -U "/etc/mosquitto/passwd"
2023-04-21 21:28:08 +02:00
ynh_store_file_checksum --file="/etc/mosquitto/passwd"
2017-10-26 13:01:33 +02:00
#=================================================
2024-01-19 17:14:28 +01:00
# REAPPLY SYSTEM CONFIGURATIONS
2017-10-26 13:01:33 +02:00
#=================================================
2024-01-19 17:14:28 +01:00
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
2017-10-26 13:01:33 +02:00
2021-02-13 18:14:54 +01:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate --non-append
2017-10-26 13:01:33 +02:00
2024-01-19 17:14:28 +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
#=================================================
2022-06-20 01:41:47 +02:00
# START SYSTEMD SERVICE
2017-10-26 13:01:33 +02:00
#=================================================
2022-06-20 01:41:47 +02:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2017-10-26 13:01:33 +02:00
2024-01-19 17:14:28 +01:00
ynh_systemd_action --service_name="$app" --action="restart"
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="Upgrade of $app completed" --last