blob: 52bc0b1a90be0ea921dfdeb4feb2c59573d57229 (
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
27
28
29
30
31
32
33
34
35
36
37
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/games-server/pvpgn/files/init.d.rc,v 1.1 2004/09/01 04:39:51 vapier Exp $
opts="reload shutdown"
depend() {
need net
}
checkconfig() {
if [ ! -f /etc/games/pvpgn/NAME.conf ]; then
eerror "You must have a NAME.conf configuration file to start NAME"
return 1
fi
}
start() {
checkconfig || return 1
ebegin "Starting PvPGN NAME"
start-stop-daemon --start --quiet \
--exec GAMES_BINDIR/NAME -c GAMES_USER:GAMES_GROUP --
eend $? "Failed to start NAME"
}
stop() {
ebegin "Stopping PvPGN NAME"
killall NAME
eend $?
}
reload() {
ebegin "Rehashing configuration for PvPGN NAME"
killall -1 NAME
eend $?
}
|