blob: 3fd782a7f70835519049a0dfa5d10fb91671e1e7 (
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
38
39
40
41
|
#!/sbin/runscript
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
extra_started_commands="reload"
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 --background --start --quiet \
--make-pidfile \
--pidfile /var/run/NAME.pid \
--exec GAMES_BINDIR/NAME -c GAMES_USER:GAMES_GROUP -- -f
eend $? "Failed to start NAME"
}
stop() {
ebegin "Stopping PvPGN NAME"
start-stop-daemon --stop --quiet --retry 20 \
--pidfile /var/run/NAME.pid
eend $?
}
reload() {
ebegin "Rehashing configuration for PvPGN NAME"
start-stop-daemon --stop --signal HUP --oknodo \
--pidfile /var/run/NAME.pid
eend $?
}
|