aboutsummaryrefslogtreecommitdiffstats
path: root/script/restart-solr
diff options
context:
space:
mode:
Diffstat (limited to 'script/restart-solr')
-rwxr-xr-xscript/restart-solr12
1 files changed, 0 insertions, 12 deletions
diff --git a/script/restart-solr b/script/restart-solr
deleted file mode 100755
index bf7b9194d..000000000
--- a/script/restart-solr
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-# Stops and restarts the Solr (Lucene) search engine daemon. Redirects it
-# to log.
-
-cd `dirname $0`
-cd ..
-rake solr:stop
-nohup rake solr:start >log/solr.log 2>log/solr.err.log
-
-
-