3f7bf956c10a1f0034d4d22911db1164baf0d247
[gentoo.git] / games-fps / rtcw / files / wolf-ded.rc
1 #!/sbin/openrc-run
2 # Copyright 1999-2004 Gentoo Foundation
3 # Distributed under the terms of the GNU General Public License v2
4
5 depend() {
6         need net
7 }
8
9 start() {
10         ebegin "Starting RTCW dedicated server..."
11         screen -A -m -d -S rtcw su - dedicated -c GENTOO_DIR/startwolfded
12         eend $?
13 }
14
15 stop() {
16         ebegin "Stopping RTCW dedicated server..."
17         kill `screen -list | grep rtcw | awk -F . '{ print $1 }' | sed -e s/.//`
18         eend $?
19
20 }
21
22 status() {
23         screen -list | grep rtcwded
24 }