From 20e9e9efe8856bd7694b162d326adbe136b864fd Mon Sep 17 00:00:00 2001 From: smhc Date: Sat, 12 Jul 2025 19:37:09 +1000 Subject: [PATCH] Fix url to gpg key (#5946) --- install/mqtt-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/mqtt-install.sh b/install/mqtt-install.sh index 7d1360cd0..00c2e01e4 100644 --- a/install/mqtt-install.sh +++ b/install/mqtt-install.sh @@ -15,7 +15,7 @@ update_os msg_info "Installing Mosquitto MQTT Broker" source /etc/os-release -curl -fsSL http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key >/usr/share/keyrings/mosquitto-repo.gpg.key +curl -fsSL http://repo.mosquitto.org/debian/mosquitto-repo.gpg >/usr/share/keyrings/mosquitto-repo.gpg.key chmod go+r /usr/share/keyrings/mosquitto-repo.gpg.key echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/mosquitto-repo.gpg.key] http://repo.mosquitto.org/debian ${VERSION_CODENAME} main" >/etc/apt/sources.list.d/mosquitto.list $STD apt-get update