We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46764c2 commit f176967Copy full SHA for f176967
1 file changed
docker/entrypoint.sh
@@ -64,16 +64,6 @@ if ! [ -z "${KEYSTORE_TYPE+x}" ]; then
64
sed -i "s/^keystore\.type\s*=\s*.*\$/keystore.type = ${KEYSTORE_TYPE//\//\\/}/" /opt/connect/conf/mirth.properties
65
fi
66
67
-# license key
68
-if ! [ -z "${LICENSE_KEY+x}" ]; then
69
- LINE_COUNT=`grep "license.key" /opt/connect/conf/mirth.properties | wc -l`
70
- if [ $LINE_COUNT -lt 1 ]; then
71
- echo -e "\nlicense.key = ${LICENSE_KEY//\//\\/}" >> /opt/connect/conf/mirth.properties
72
- else
73
- sed -i "s/^license\.key\s*=\s*.*\$/license.key = ${LICENSE_KEY//\//\\/}/" /opt/connect/conf/mirth.properties
74
- fi
75
-fi
76
-
77
# session store
78
if ! [ -z "${SESSION_STORE+x}" ]; then
79
LINE_COUNT=`grep "server.api.sessionstore" /opt/connect/conf/mirth.properties | wc -l`
0 commit comments