blob: 55ff0e9c9b779464cf852d1a8b5ae496b6943355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#!/sbin/openrc-run
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
depend() {
need net
use logger
}
checkconfig() {
if [ ! -f /etc/sphinx/sphinx.conf ] ; then
eerror "Please create /etc/sphinx/sphinx.conf"
eerror "Sample conf: /etc/sphinx/sphinx.conf.dist"
return 1
fi
return 0
}
start() {
checkconfig || return $?
ebegin "Starting sphinx searchd"
start-stop-daemon --start --exec /usr/bin/searchd
eend $? "Failed to start sphinx searchd"
}
stop() {
ebegin "Stopping sphinx searchd"
start-stop-daemon --stop --exec /usr/bin/searchd
eend $? "Failed to stop sphinx searchd"
}
|