blob: 8b7d91455ddbbeed8b84450e3f0b2958e871df93 (
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 /root/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
|