blob: f59cbebb6fc479a8a41d84e5d32be9b0b12c6829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-db/xindice/files/xindice-r1,v 1.1 2004/08/27 10:16:52 phosphan Exp $
depend() {
need net
}
start() {
ebegin "Starting xindice..."
start-stop-daemon --pidfile /var/run/xindice/xindice.pid\
--start --background --user xindice --chuid xindice\
--exec /opt/xindice/start
eend $?
}
stop() {
ebegin "Stopping xindice..."
start-stop-daemon --pidfile /var/run/xindice/xindice.pid --stop --retry 10
eend $?
}
|