games-server/fbmuck
[portage-squeep] / games-server / fbmuck / files / fbmuck
1 #!/sbin/runscript
2 # Copyright 1999-2003 Gentoo Technologies, Inc.
3 # Distributed under the terms of the GNU General Public License v2
4
5 depend() {
6 use dns
7 }
8
9 checkconfig() {
10 if [ ! -f /etc/fbmucks ] ; then
11 eerror "Please create /etc/fbmucks"
12 return 1
13 fi
14 return 0
15 }
16
17 start() {
18 checkconfig || return $?
19
20 ebegin "Starting all fbmucks"
21 fbmuckctl start &
22 eend $? "Failed to start fbmucks"
23 }
24
25 stop() {
26 ebegin "Stopping fbmucks"
27 fbmuckctl stop &
28 eend $? "Failed to stop fbmucks"
29 }