blob: 7381d50dfec2d458962afc91de5c6020548bc198 [file] [log] [blame]
Avi Zivc175a0d2018-03-15 13:21:44 +02001#!/bin/sh
2
sebdetdf353be2020-09-21 22:13:05 +02003JAVA_OPTIONS="$JAVA_OPTIONS \
4 -Dcom.datastax.driver.USE_NATIVE_CLOCK=false \
5 -Dconfig.home=$JETTY_BASE/config \
6 -Dlog.home=$JETTY_BASE/logs \
7 -Dlogback.configurationFile=$JETTY_BASE/config/onboarding-be/logback.xml \
8 -Dconfiguration.yaml=$JETTY_BASE/config/onboarding-be/onboarding_configuration.yaml \
9 -Dconfig.location=$JETTY_BASE/config/onboarding-be/."
10
11cd $JETTY_BASE
12
13cd $JETTY_BASE/chef-solo
Avi Zivc175a0d2018-03-15 13:21:44 +020014chef-solo -c solo.rb -E ${ENVNAME}
Avi Zivc175a0d2018-03-15 13:21:44 +020015
sebdetdf353be2020-09-21 22:13:05 +020016cd $JETTY_HOME
Avi Zivc175a0d2018-03-15 13:21:44 +020017
sebdetdf353be2020-09-21 22:13:05 +020018java $JAVA_OPTIONS -jar "${JETTY_HOME}/start.jar"