diff options
author | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-08-30 16:11:09 -0300 |
---|---|---|
committer | Márcio Alexandre Silva Delgado <coadde@lavabit.com> | 2013-08-30 16:11:09 -0300 |
commit | 479722d138d109c10b9895a22868463c642e7edb (patch) | |
tree | 7ec3471b9aa6a0d24b735040575b1923e4b26856 /~fauno/sphinx/sphinx.rc.d | |
parent | a7cbbe0d9d06f75042fe4267a19833cf95e2d7d2 (diff) | |
parent | e73edbc68c2fd12028bb3e6e0da12fda51f4f3cd (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, 0 insertions, 44 deletions
diff --git a/~fauno/sphinx/sphinx.rc.d b/~fauno/sphinx/sphinx.rc.d deleted file mode 100644 index 64c8f01e7..000000000 --- a/~fauno/sphinx/sphinx.rc.d +++ /dev/null @@ -1,44 +0,0 @@ -#!/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 |