From 60a0d0b79f6221f5ade6ea0cfabfe55b15ad22f0 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Thu, 9 Jul 2026 09:44:28 +0200 Subject: [PATCH] Update run --- .../rootfs/etc/s6-overlay/s6-rc.d/svc-headroom/run | 8 -------- 1 file changed, 8 deletions(-) diff --git a/claude_desktop/rootfs/etc/s6-overlay/s6-rc.d/svc-headroom/run b/claude_desktop/rootfs/etc/s6-overlay/s6-rc.d/svc-headroom/run index 8f2a514206..941b6768d6 100755 --- a/claude_desktop/rootfs/etc/s6-overlay/s6-rc.d/svc-headroom/run +++ b/claude_desktop/rootfs/etc/s6-overlay/s6-rc.d/svc-headroom/run @@ -8,14 +8,6 @@ declare port=8787 declare host=127.0.0.1 -# Expose the built-in Headroom dashboard only when the add-on option is enabled -# and Home Assistant has mapped the Headroom port. The port is mapped by default -# in config.yaml, so users can open http://:8787/dashboard to inspect -# live savings, while disabling install_headroom still leaves the service idle. -if [[ -n "$(bashio::addon.port "${port}")" ]]; then - host=127.0.0.1 -fi - if bashio::config.true 'install_headroom' && command -v headroom >/dev/null 2>&1; then bashio::log.info "svc-headroom: starting headroom proxy on ${host}:${port}; dashboard available at /dashboard when the port is mapped (MCP backend only; no client routing)" exec headroom proxy --host "${host}" --port "${port}" --code-aware