From: Dennis Schafroth Date: Wed, 3 Jul 2013 13:12:33 +0000 (+0200) Subject: More configurable X-Git-Tag: v0.4.6~3^2 X-Git-Url: http://git.indexdata.com/?p=lui-solr.git;a=commitdiff_plain;h=6a13ba21710a84d5fac7cd349e01645b5d839142 More configurable --- diff --git a/optimize_solr.sh b/optimize_solr.sh index 90d9a26..1c22ed8 100755 --- a/optimize_solr.sh +++ b/optimize_solr.sh @@ -4,6 +4,11 @@ if [ "$1" != "YES" ] ; then echo "No confirmation given" exit 1 ; fi -HOST=localhost -PORT=8080 -curl http://$HOST:$PORT/solr/update -H "Content-Type: text/xml" --data-binary '' \ No newline at end of file + +HOST_PORT=localhost:8080 + +if [ "$2" != "" ] ; then + HOST_PORT="$2" +fi + +curl http://${HOST_PORT}/solr/update -H "Content-Type: text/xml" --data-binary '' \ No newline at end of file