aboutsummaryrefslogtreecommitdiffstats
path: root/docker/startup.sh
blob: 4f363da35b28d53393de06490ccdc27304f4509d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh
#set -x

# Run chef-solo for configuration
cd /var/opt/dcae-dt/chef-solo
chef-solo -c solo.rb -E ${ENVNAME} --log_level "debug" --logfile "/opt/logs/dcae-dt/chef-dcae-dt.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