diff --git a/ods/installers/macos/install-macos.sh b/ods/installers/macos/install-macos.sh index 829473903..d77c7ee08 100755 --- a/ods/installers/macos/install-macos.sh +++ b/ods/installers/macos/install-macos.sh @@ -3072,7 +3072,9 @@ else HEALTH_URLS=("http://${_health_llama_host}:${_health_llama_port}/health" "http://127.0.0.1:3000") HEALTH_CONTAINERS=("" "ods-webui") fi -$ENABLE_VOICE && HEALTH_NAMES+=("Whisper (STT)") && HEALTH_URLS+=("http://127.0.0.1:9000/health") && HEALTH_CONTAINERS+=("ods-whisper") +_health_whisper_port="$(read_env_value "$INSTALL_DIR/.env" "WHISPER_PORT")" +[[ "$_health_whisper_port" =~ ^[0-9]+$ ]] || _health_whisper_port="9000" +$ENABLE_VOICE && HEALTH_NAMES+=("Whisper (STT)") && HEALTH_URLS+=("http://127.0.0.1:${_health_whisper_port}/health") && HEALTH_CONTAINERS+=("ods-whisper") $ENABLE_WORKFLOWS && HEALTH_NAMES+=("n8n (Workflows)") && HEALTH_URLS+=("http://127.0.0.1:5678/healthz") && HEALTH_CONTAINERS+=("ods-n8n") [[ -x "$OPENCODE_BIN" ]] && HEALTH_NAMES+=("OpenCode (IDE)") && HEALTH_URLS+=("http://127.0.0.1:${OPENCODE_PORT}") && HEALTH_CONTAINERS+=("")