bump to next test version

This commit is contained in:
Stefan Allius
2025-05-31 18:27:57 +02:00
parent d326a9e57d
commit 0686718ea8
2 changed files with 7 additions and 5 deletions

View File

@@ -5,10 +5,12 @@ bashio::cache.flush_all
echo "check for Home Assistant supervisor API"
if bashio::supervisor.ping; then
echo "check for Home Assistant MQTT"
MQTT_HOST=$(bashio::services mqtt "host")
MQTT_PORT=$(bashio::services mqtt "port")
MQTT_USER=$(bashio::services mqtt "username")
MQTT_PASSWORD=$(bashio::services mqtt "password")
if bashio::services mqtt; then
MQTT_HOST=$(bashio::services mqtt "host")
MQTT_PORT=$(bashio::services mqtt "port")
MQTT_USER=$(bashio::services mqtt "username")
MQTT_PASSWORD=$(bashio::services mqtt "password")
fi
else
echo "error Home Assistant supervisor API not available!"
fi