From a0c574524cc7304a9948d8b68a2c0d3f0b5acb33 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Fri, 30 Jan 2026 13:06:49 +0100 Subject: [PATCH] Remove standalone mode handling in ha_entrypoint.sh Removed standalone mode check for bashio commands. --- .templates/ha_entrypoint.sh | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.templates/ha_entrypoint.sh b/.templates/ha_entrypoint.sh index cf2f749a2..7621af626 100755 --- a/.templates/ha_entrypoint.sh +++ b/.templates/ha_entrypoint.sh @@ -2,16 +2,6 @@ # shellcheck shell=bash set -euo pipefail -###################################### -# Accept running without supervisor # -###################################### - -if ! bashio::supervisor.ping 2> /dev/null; then - bashio::log.warning "Using standalone mode to run bashio commands without HA supervisor" - mv /usr/local/lib/bashio-standalone.sh /usr/bin/bashio - chmod +x /usr/bin/bashio -fi - ########################################## # Detect if this is PID1 (main process) # ##########################################