blob: 5f4094593acf6c2ee4af6c38bd8baaa5dd2587c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/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 $?
}
|