More configurable
authorDennis Schafroth <dennis@indexdata.com>
Wed, 3 Jul 2013 13:12:33 +0000 (15:12 +0200)
committerDennis Schafroth <dennis@indexdata.com>
Wed, 3 Jul 2013 13:12:33 +0000 (15:12 +0200)
optimize_solr.sh

index 90d9a26..1c22ed8 100755 (executable)
@@ -4,6 +4,11 @@ if [ "$1" != "YES" ] ; then
     echo "No confirmation given"
     exit 1 ; 
 fi  
     echo "No confirmation given"
     exit 1 ; 
 fi  
-HOST=localhost
-PORT=8080
-curl http://$HOST:$PORT/solr/update -H "Content-Type: text/xml" --data-binary '<optimize waitSearcher="false" />'
\ 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 '<optimize waitSearcher="false" />'
\ No newline at end of file