#!/sbin/runscript # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-i18n/canna/files/canna.initd,v 1.4 2003/05/17 19:15:26 nakano Exp $ # CANNASERVER_OPTS is defined in /etc/conf.d/canna start() { ebegin "Starting canna" /usr/sbin/cannaserver ${CANNASERVER_OPTS} eend $? "Failed to start canna" } stop() { if [ -x /usr/sbin/cannakill ]; then CANNAKILL="/usr/sbin/cannakill" elif [ -x /usr/bin/cannakill ]; then CANNAKILL="/usr/bin/cannakill" else eerror "file not found: cannakill" return 1 fi ebegin "Stopping canna" ${CANNAKILL} eend $? "Failed to stop canna" }