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

JAVA_OPTIONS=" ${JAVA_OPTIONS} -Dconfig.home=${JETTY_BASE}/config
                               -Dlog.home=${JETTY_BASE}/logs
                               -Dlogback.configurationFile=${JETTY_BASE}/dcae-fe/logback-spring.xml"

cd /var/lib/jetty/chef-solo
chef-solo -c solo.rb -E ${ENVNAME}

status=$?
if [[ ${status} != 0 ]]; then
  echo "[ERROR] Problem detected while running chef. Aborting !"
  exit 1
fi

cd /var/lib/jetty
/docker-entrypoint.sh &

while true; do sleep 2; done