Skip to content

Commit

Permalink
fixed small mistake with catalina_opts env variable
Browse files Browse the repository at this point in the history
  • Loading branch information
James Babb committed Nov 22, 2017
1 parent b677c41 commit f423a64
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion midpoint/assets/run-midpoint.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/sh

set -x;

# Is MySQL available?
until nc -vz midpoint-poc-mysql 3306
do
Expand All @@ -17,7 +19,7 @@ then
fi

# set environment to point the JVM at midpoint's trust store
CATALINA_OPTS=-Djavax.net.ssl.trustStore=/var/opt/midpoint/keystore.jceks -Djavax.net.ssl.trustStoreType=jceks
CATALINA_OPTS="-Djavax.net.ssl.trustStore=/var/opt/midpoint/keystore.jceks -Djavax.net.ssl.trustStoreType=jceks"

echo "Starting midpoint"
catalina.sh start
Expand Down

0 comments on commit f423a64

Please sign in to comment.