X-Git-Url: http://git.indexdata.com/?p=lui-solr.git;a=blobdiff_plain;f=scripts%2Foptimize_solr.sh;fp=scripts%2Foptimize_solr.sh;h=d608b4a695be15b295cdcf2612bd8d93e93afd51;hp=bb4127d19301a6e26a1260c43dcaf021653e72da;hb=38f036207b1ba4c7fa92ddc94c7d60ee82a507b6;hpb=2b52626c1213e6bf757b609316ea027a330da926 diff --git a/scripts/optimize_solr.sh b/scripts/optimize_solr.sh index bb4127d..d608b4a 100755 --- a/scripts/optimize_solr.sh +++ b/scripts/optimize_solr.sh @@ -1,14 +1,20 @@ #!/bin/bash -if [ "$1" != "YES" ] ; then - echo "No confirmation given" - exit 1 ; -fi - HOST_PORT=localhost:8080 if [ "$2" != "" ] ; then HOST_PORT="$2" fi -curl http://${HOST_PORT}/solr/update -H "Content-Type: text/xml" --data-binary '' +PATH=solr4 +if [ "$3" != "" ] ; then + PATH="$3" +fi + +if [ "$1" != "YES" ] ; then + echo "$0 YES [[HOST:PORT] PATH] (default $HOST_PORT/$PATH)" + exit 1 ; +fi + + +curl http://${HOST_PORT}/$PATH/update -H "Content-Type: text/xml" --data-binary ''