From c6f11f2579e1ced27ad91f5392eacb1baedf64fb Mon Sep 17 00:00:00 2001 From: "andre.schmid" Date: Thu, 23 Jan 2020 10:51:28 +0000 Subject: [PATCH] Fix sdc-BE-init container startup Remove the while true in the startup.sh script that prevents the container to stop. Change-Id: If4acc41dde6e1b8d7f726adfef30ab6ddf20b640 Issue-ID: SDC-2724 Signed-off-by: andre.schmid --- catalog-be/sdc-backend-init/startup.sh | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/catalog-be/sdc-backend-init/startup.sh b/catalog-be/sdc-backend-init/startup.sh index 1f3717abc0..0a96e49723 100644 --- a/catalog-be/sdc-backend-init/startup.sh +++ b/catalog-be/sdc-backend-init/startup.sh @@ -1,8 +1,6 @@ #!/bin/sh -cd /root/chef-solo -chef-solo -c solo.rb -E ${ENVNAME} - -while true; do sleep 2; done -#rc=$? -#if [[ $rc != 0 ]]; then exit $rc; fi +cd /root/chef-solo || exit $? +chef-solo -c solo.rb -E "${ENVNAME}" +rc=$? +if [ $rc != 0 ]; then exit $rc; fi -- 2.16.6