blob: 46925ae8af7ce26148a1f3ec3ee34c9c30ded198 [file] [log] [blame]
#!/bin/sh
#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"
status=$?
if [ $status != 0 ]; then
echo "[ERROR] Problem detected while running chef. Aborting !"
exit 1
fi
# Execute Jetty
cd /var/lib/jetty
/docker-entrypoint.sh &
while true; do sleep 2; done