From fbfdac0432da64c584c005bd225c0ab0e0fbb846 Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Tue, 24 Apr 2018 16:19:34 +0200 Subject: [PATCH] Don't exit self, this might lead to unusable instances Signed-off-by: Knut Ahlers --- entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5b11d58..4c5608b 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -44,5 +44,6 @@ function unseal() { } while [ 1 ]; do - main && break || sleep 10 + main + sleep 10 done