sphinx scripts
darcs-hash:20081124044435-099f7-9d7413f0eb27d20dc1bbf912ffd9eccaec17422a.gz
This commit is contained in:
15
scripts/sphinx.sh
Executable file
15
scripts/sphinx.sh
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ $1 = "start" ]]
|
||||
then
|
||||
echo "Stopping any running daemons..."
|
||||
/usr/local/bin/searchd --config /usr/local/etc/sphinx.conf --stop 2> /dev/null
|
||||
echo "Starting sphinx search daemon..."
|
||||
/usr/local/bin/searchd --config /usr/local/etc/sphinx.conf 2> /dev/null
|
||||
fi
|
||||
|
||||
if [[ $1 = "stop" ]]
|
||||
then
|
||||
echo "Stopping sphinx search daemon..."
|
||||
/usr/local/bin/searchd --config /usr/local/etc/sphinx.conf --stop 2> /dev/null
|
||||
fi
|
Reference in New Issue
Block a user