summaryrefslogtreecommitdiff
blob: 683ce9f82f3d88eca54799b76fadcce4e3c861ad (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-r2,v 1.1 2004/10/06 06:58:49 phosphan Exp $

depend() {
	use 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 $?
}