Moved scripts
[lui-solr.git] / delete_solr.sh
diff --git a/delete_solr.sh b/delete_solr.sh
deleted file mode 100755 (executable)
index 2b91d65..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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"/>'