blob: 0b035cd67ae83a06b4ee8f71b11e389bb0191879 (
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/openrc-run
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
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 $?
}
|