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/games-server/ut2004-ded/files/ut2004-ded.initd

27 lines
679 B

#!/sbin/runscript
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/ut2004-ded/files/ut2004-ded.initd,v 1.2 2009/10/12 00:54:17 nyhm Exp $
depend() {
need net
}
start() {
ebegin "Starting ut2004-ded"
start-stop-daemon --start --quiet --background --make-pidfile \
--pidfile /var/run/ut2004-ded.pid \
--chuid ${ut2004_ded_user}:${ut2004_ded_group} \
--env HOME="${ut2004_ded_home}" \
--exec "@DIR@/ut2004-ded" \
-- ${ut2004_ded_opts}
eend $?
}
stop() {
ebegin "Stopping ut2004-ded"
start-stop-daemon --stop \
--pidfile /var/run/ut2004-ded.pid
eend $?
}