Moved scripts
[lui-solr.git] / scripts / delete_solr.sh
diff --git a/scripts/delete_solr.sh b/scripts/delete_solr.sh
new file mode 100755 (executable)
index 0000000..2b91d65
--- /dev/null
@@ -0,0 +1,14 @@
+#!/bin/bash
+
+if [ "$1" == "" ] ; then 
+    echo "$0 databaseid [HOST:PORT] "
+    exit 1 ; 
+fi  
+HOSTPORT="localhost:8080"
+
+if [ "$2" != "" ] ; then 
+    HOSTPORT="$2"
+fi 
+
+curl http://${HOSTPORT}/solr/update -H "Content-Type: text/xml" --data-binary "<delete><query>database:$1</query></delete>"
+curl http://${HOSTPORT}/solr/update -H "Content-Type: text/xml" --data-binary '<commit waitFlush="false" waitSearcher="false"/>'