#!/sbin/runscript # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/files/saslauthd2.rc6,v 1.7 2007/04/07 13:03:55 chtekk Exp $ depend() { need net after firewall } start() { ebegin "Starting saslauthd" start-stop-daemon --start --quiet --exec /usr/sbin/saslauthd \ -- ${SASLAUTHD_OPTS} eend $? } stop() { ebegin "Stopping saslauthd" start-stop-daemon --stop --quiet --pidfile /var/lib/sasl2/saslauthd.pid eend $? }