From: andre.schmid Date: Thu, 23 Jan 2020 10:51:28 +0000 (+0000) Subject: Fix sdc-BE-init container startup X-Git-Tag: 1.6.1~19 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=c6f11f2579e1ced27ad91f5392eacb1baedf64fb;p=sdc.git 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 --- 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