Update mqtt-install.sh

create `/etc/mosquitto/conf.d/default.conf`
This commit is contained in:
tteckster 2023-08-07 14:00:26 -04:00 committed by GitHub
parent 7add9d891d
commit f796767e06
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -22,6 +22,12 @@ msg_ok "Installed Dependencies"
msg_info "Installing Mosquitto MQTT Broker"
$STD apt-get -y install mosquitto
$STD apt-get -y install mosquitto-clients
cat <<EOF >/etc/mosquitto/conf.d/default.conf
allow_anonymous false
persistence true
password_file /etc/mosquitto/passwd
listener 1883
EOF
msg_ok "Installed Mosquitto MQTT Broker"
motd_ssh