#!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 depend() { use dns } checkconfig() { if [ ! -f /etc/fbmucks ] ; then eerror "Please create /etc/fbmucks" return 1 fi return 0 } start() { checkconfig || return $? ebegin "Starting all fbmucks" fbmuckctl start & eend $? "Failed to start fbmucks" } stop() { ebegin "Stopping fbmucks" fbmuckctl stop & eend $? "Failed to stop fbmucks" }