You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/geneweb/files/geneweb.initd

21 lines
539 B

#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/geneweb/files/geneweb.initd,v 1.2 2011/09/28 08:09:15 tupone Exp $
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 $?
}