blob: a88cd369e7405e36b28a02aea9d4abde3c2cddd1 [file] [log] [blame]
Stone, Avi (as206k)530230e2018-05-17 10:25:42 +03001#!/bin/sh
2set -x
3# Run chef-solo for configuration
4cd /var/opt/dcae-be/chef-solo
5chef-solo -c solo.rb -E ${ENVNAME} --log_level "debug" --logfile "/tmp/Chef-Solo.log"
6
7status=$?
8if [ $status != 0 ]; then
9 echo "[ERROR] Problem detected while running chef. Aborting !"
10 exit 1
11fi
12
13# Execute Jetty
14cd /var/lib/jetty
15/docker-entrypoint.sh &
16
17#while true; do sleep 2; done
18exec "$@";