From 6b7b39697900fc3e2248eccde51aefd089d7a44e Mon Sep 17 00:00:00 2001 From: Brendan Early Date: Mon, 10 May 2021 20:17:51 -0500 Subject: [PATCH] solr: final typos --- roles/openshift-apps/solr/templates/solr-start.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/openshift-apps/solr/templates/solr-start.sh b/roles/openshift-apps/solr/templates/solr-start.sh index da4fbfccb4..9c341f5edf 100644 --- a/roles/openshift-apps/solr/templates/solr-start.sh +++ b/roles/openshift-apps/solr/templates/solr-start.sh @@ -25,7 +25,7 @@ if [[ "$VERBOSE" == "yes" ]]; then fi EXTRA_ARGS=() -EXTRA_ARGS+=(-a '-p 8983') +EXTRA_ARGS+=(-p 8983) # Start of https://github.com/docker-solr/docker-solr/blob/master/scripts/solr-fg if [[ -z "${OOM:-}" ]]; then @@ -64,9 +64,9 @@ if [[ -z "${TINI:-}" ]]; then fi fi if [[ "$TINI" == yes ]]; then - exec /usr/bin/tini -- solr -f "$@" "${EXTRA_ARGS[@]}" + exec /usr/bin/tini -- solr -f "${EXTRA_ARGS[@]}" elif [[ "$TINI" == no ]]; then - exec solr -f "$@" "${EXTRA_ARGS[@]}" + exec solr -f "${EXTRA_ARGS[@]}" else echo "invalid value TINI=$TINI" exit 1