diff options
author | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-08-20 15:19:05 -0300 |
---|---|---|
committer | André Fabian Silva Delgado <emulatorman@lavabit.com> | 2012-08-20 15:19:05 -0300 |
commit | 2aa5e5c7fcc998d619cc9ff49f1ea2b2fb6d89c3 (patch) | |
tree | fc61a4d50a7ff8e080ff3a10a1c19f8621f4d9b9 /~fauno/sphinx/sphinx.rc.d | |
parent | 504b209228440ab6d822e80fd8698320a7d4b15e (diff) | |
parent | 57821887d1b3f9be4ea9bd80dd7f2f3588220c7c (diff) |
Merge branch 'master' of ssh://parabolagnulinux.org:1863/srv/git/abslibre
Diffstat (limited to '~fauno/sphinx/sphinx.rc.d')
-rw-r--r-- | ~fauno/sphinx/sphinx.rc.d | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/~fauno/sphinx/sphinx.rc.d b/~fauno/sphinx/sphinx.rc.d new file mode 100644 index 000000000..64c8f01e7 --- /dev/null +++ b/~fauno/sphinx/sphinx.rc.d @@ -0,0 +1,44 @@ +#!/bin/bash + +. /etc/rc.conf +. /etc/rc.d/functions +. /etc/conf.d/sphinx + +PID=$(pidof -o %PPID /usr/bin/sphinx-searchd) +case $1 in +start) + stat_busy "Starting Sphinx Daemon" + + if [[ -z $PID ]] && /usr/bin/sphinx-searchd $SPHINX_ARGS; then + + PID=$(pidof -o %PPID /usr/bin/sphinx-searchd) + echo "$PID" > /var/run/sphinx-searchd.pid + add_daemon sphinx + stat_done + else + stat_fail + exit 1 + fi + ;; + +stop) + stat_busy "Stopping Sphinx Daemon" + if [[ ! -z $PID ]] && kill "$PID" &>/dev/null; then + rm_daemon sphinx + stat_done + else + stat_fail + exit 1 + fi + ;; + +restart) + $0 stop + $0 start + ;; + +*) + echo "Usage: $0 {start|stop|restart}" >&2 + exit 1 + +esac |