Compare commits

..

2 Commits

Author SHA1 Message Date
tteckster f5b629de51
Update mariadb-install.sh
reintroduce MariaDB repositories
2023-08-27 10:10:40 -04:00
tteckster 86d1a388f9
Update mqtt-install.sh
reintroduce Mosquitto repositories
2023-08-27 10:09:11 -04:00
2 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,8 @@ $STD apt-get install -y mc
msg_ok "Installed Dependencies"
msg_info "Installing MariaDB"
$STD bash <(curl -fsSL https://r.mariadb.com/downloads/mariadb_repo_setup)
$STD apt-get update
$STD apt-get install -y mariadb-server
sed -i 's/^# *\(port *=.*\)/\1/' /etc/mysql/my.cnf
sed -i 's/^bind-address/#bind-address/g' /etc/mysql/mariadb.conf.d/50-server.cnf

View File

@ -20,6 +20,12 @@ $STD apt-get install -y mc
msg_ok "Installed Dependencies"
msg_info "Installing Mosquitto MQTT Broker"
if [ "$PCT_OSTYPE" == "debian" ]; then
VERSION="$(awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release)"
wget -qO- http://repo.mosquitto.org/debian/mosquitto-repo.gpg.key >/etc/apt/trusted.gpg.d/mosquitto-repo.asc
wget -qO /etc/apt/sources.list.d/mosquitto-${VERSION}.list http://repo.mosquitto.org/debian/mosquitto-${VERSION}.list
$STD apt-get update
fi
$STD apt-get -y install mosquitto
$STD apt-get -y install mosquitto-clients
cat <<EOF >/etc/mosquitto/conf.d/default.conf