revise the log outputs

This commit is contained in:
Stefan Allius
2025-05-31 21:45:48 +02:00
parent 67c1f5e71a
commit 3e53ca928b

View File

@@ -1,29 +1,28 @@
#!/usr/bin/with-contenv bashio #!/usr/bin/with-contenv bashio
echo "run.sh: info: Add-on environment started" bashio::log.blue "-----------------------------------------------------------"
bashio::log.blue "run.sh: info: setup Add-on environment"
bashio::cache.flush_all bashio::cache.flush_all
echo "run.sh: info: check for Home Assistant supervisor API"
MQTT_HOST="" MQTT_HOST=""
if bashio::supervisor.ping; then if bashio::supervisor.ping; then
echo "run.sh: info: check for Home Assistant MQTT" bashio::log "run.sh: info: check for Home Assistant MQTT service"
if bashio::services mqtt "host"; then if bashio::services.available mqtt; then
MQTT_HOST=$(bashio::services mqtt "host") MQTT_HOST=$(bashio::services mqtt "host")
MQTT_PORT=$(bashio::services mqtt "port") MQTT_PORT=$(bashio::services mqtt "port")
MQTT_USER=$(bashio::services mqtt "username") MQTT_USER=$(bashio::services mqtt "username")
MQTT_PASSWORD=$(bashio::services mqtt "password") MQTT_PASSWORD=$(bashio::services mqtt "password")
else else
echo "run.sh: error: Home Assistant service MQTT not available!" bashio::log.yellow "run.sh: info: Home Assistant MQTT service not available!"
fi fi
else else
echo "run.sh: error: Home Assistant supervisor API not available!" bashio::log.red "run.sh: error: Home Assistant Supervisor API not available!"
fi fi
# if a MQTT was/not found, drop a note # if a MQTT was/not found, drop a note
if [ -z "$MQTT_HOST" ]; then if [ -z "$MQTT_HOST" ]; then
echo "run.sh: info: MQTT configuration not found" bashio::log.yellow "run.sh: info: MQTT config not found"
else else
echo "" bashio::log.green "run.sh: info: MQTT config found"
echo "run.sh: info: MQTT found"
export MQTT_HOST export MQTT_HOST
export MQTT_PORT export MQTT_PORT
export MQTT_USER export MQTT_USER
@@ -40,5 +39,6 @@ cd /home/proxy || exit
export VERSION=$(cat /proxy-version.txt) export VERSION=$(cat /proxy-version.txt)
echo "Start Proxyserver..." bashio::log.blue "run.sh: info: Start Proxyserver..."
bashio::log.blue "-----------------------------------------------------------"
python3 server.py --rel_urls --json_config=/data/options.json --log_path=/homeassistant/tsun-proxy/logs/ --config_path=/homeassistant/tsun-proxy/ --log_backups=2 python3 server.py --rel_urls --json_config=/data/options.json --log_path=/homeassistant/tsun-proxy/logs/ --config_path=/homeassistant/tsun-proxy/ --log_backups=2