From ac65be7e3b2e4d9a4dbe2b46d5040bd9b815a52a Mon Sep 17 00:00:00 2001 From: Pierre GINDRAUD Date: Mon, 30 Mar 2026 21:08:10 +0200 Subject: [PATCH] Replace tail command with exec for entrypoint Use exec to allow container signals to reach the main "process" during stop --- apps/kea-dhcp/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/kea-dhcp/entrypoint.sh b/apps/kea-dhcp/entrypoint.sh index 50a1933..150882a 100755 --- a/apps/kea-dhcp/entrypoint.sh +++ b/apps/kea-dhcp/entrypoint.sh @@ -24,4 +24,4 @@ elif [[ -e /run/kea/kea-dhcp4-ctrl.sock ]];then elif [[ -e /run/kea/kea-dhcp6-ctrl.sock ]];then python3 /usr/local/bin/kea-exporter /run/kea/kea-dhcp6-ctrl.sock fi -tail -f /dev/null \ No newline at end of file +exec tail -f /dev/null