diff options
author | sebdet <sebastien.determe@intl.att.com> | 2020-08-04 14:16:00 +0200 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2020-09-08 13:45:31 +0200 |
commit | 30670accb070b20c1c770d1ebbd6d72e24fee2db (patch) | |
tree | 8ddb5d70500aa1b3baa4e262de411e8394e22e6a /utils/webseal-simulator/sdc-simulator/startup.sh | |
parent | a8a96339680fa1c4df5577285442e902b5637631 (diff) |
Upgrade to java 11
MOve SDC to Java 11, this is one of the PR to move to Jdk 11, jenkins will have to be changed as well
Issue-ID: SDC-2725
Change-Id: I85f13f14ba8004f6e9656093a837465a2e4af3e1
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Signed-off-by: xuegao <xg353y@intl.att.com>
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'utils/webseal-simulator/sdc-simulator/startup.sh')
-rw-r--r-- | utils/webseal-simulator/sdc-simulator/startup.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/utils/webseal-simulator/sdc-simulator/startup.sh b/utils/webseal-simulator/sdc-simulator/startup.sh index 66add3a75e..3f6e2a02b5 100644 --- a/utils/webseal-simulator/sdc-simulator/startup.sh +++ b/utils/webseal-simulator/sdc-simulator/startup.sh @@ -1,11 +1,9 @@ #!/bin/sh - - cd /root/chef-solo chef-solo -c solo.rb -E ${ENVNAME} rc=$? -if [[ $rc != 0 ]]; then +if [ $rc -ne 0 ]; then echo "Chef exaction failed." exit $rc; fi @@ -21,5 +19,6 @@ JAVA_OPTIONS=" ${JAVA_OPTIONS} \ cd /var/lib/jetty -/docker-entrypoint.sh + +java $JAVA_OPTIONS -jar "$JETTY_HOME/start.jar" |