From 337ac99234ed740dce6042f3eecb195fcadf8e63 Mon Sep 17 00:00:00 2001 From: Pete Birley Date: Tue, 11 Dec 2018 12:53:38 -0600 Subject: [PATCH] Ingress: Update sleep function to not require dumb-init This PS updates the sleep function to not require dumb-init to be present in images. Change-Id: I9ee7270f2c101a3a85b2aecd01097a70014ea4a6 Signed-off-by: Pete Birley --- ingress/templates/bin/_ingress-vip-routed.sh.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingress/templates/bin/_ingress-vip-routed.sh.tpl b/ingress/templates/bin/_ingress-vip-routed.sh.tpl index e0ad6fc3c..3df0053ef 100644 --- a/ingress/templates/bin/_ingress-vip-routed.sh.tpl +++ b/ingress/templates/bin/_ingress-vip-routed.sh.tpl @@ -38,7 +38,7 @@ function start () { } function sleep () { - exec /usr/bin/dumb-init bash -c "while :; do sleep 2073600; done" + exec bash -c "while :; do sleep 2073600; done" } function stop () {