From 5241603a3eab94dd5c1d6e28492d7a912abbc1d5 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 15 Sep 2025 15:51:23 +0200 Subject: [PATCH] Update entrypoint to exclude cont-init.d scripts --- .templates/ha_entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/ha_entrypoint.sh b/.templates/ha_entrypoint.sh index 922a1e94c..f1f18f6b0 100755 --- a/.templates/ha_entrypoint.sh +++ b/.templates/ha_entrypoint.sh @@ -103,7 +103,7 @@ done # Start run scripts in services.d and s6-overlay/s6-rc.d if PID1 if $PID1; then shopt -s nullglob # Don't expand unmatched globs to themselves - for runfile in /etc/services.d/*/run /etc/s6-overlay/s6-rc.d/*/run /etc/cont-init.d/*; do + for runfile in /etc/services.d/*/run /etc/s6-overlay/s6-rc.d/*/run; do [ -f "$runfile" ] || continue echo "Starting: $runfile" apply_s6_mods "$runfile"