diff options
-rw-r--r-- | docker/startup.sh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/docker/startup.sh b/docker/startup.sh index 806a9a7..46925ae 100644 --- a/docker/startup.sh +++ b/docker/startup.sh @@ -1,5 +1,6 @@ #!/bin/sh -set -x +#set -x + # Run chef-solo for configuration cd /var/opt/dcae-fe/chef-solo chef-solo -c solo.rb -E ${ENVNAME} --log_level "debug" --logfile "/tmp/Chef-Solo.log" @@ -14,5 +15,5 @@ fi cd /var/lib/jetty /docker-entrypoint.sh & -#while true; do sleep 2; done -exec "$@"; +while true; do sleep 2; done + |