summaryrefslogtreecommitdiff
blob: 8ed7013ab509c8cb434993fd8c0414bd056b0c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

depend() {
	need net
}

start() {
	ebegin "Starting geneweb server"
	start-stop-daemon -S -u geneweb -x /usr/bin/gwd -- -bd /var/lib/geneweb -lang $LANG -log /var/log/geneweb.log -daemon
	eend $?
}

stop() {
	ebegin "Stopping geneweb server"
	start-stop-daemon -K -u geneweb -x /usr/bin/gwd
	eend $?
}