diff options
author | Maik Schreiber <blizzy@gentoo.org> | 2002-07-08 18:25:24 +0000 |
---|---|---|
committer | Maik Schreiber <blizzy@gentoo.org> | 2002-07-08 18:25:24 +0000 |
commit | 0e39ae4a8424b46ace493e70c151652aa331e6ec (patch) | |
tree | c0ff305b55399260348581e9188b52ca502e09e6 /dev-libs/cyrus-sasl | |
parent | new version, closes bug #4155 (diff) | |
download | historical-0e39ae4a8424b46ace493e70c151652aa331e6ec.tar.gz historical-0e39ae4a8424b46ace493e70c151652aa331e6ec.tar.bz2 historical-0e39ae4a8424b46ace493e70c151652aa331e6ec.zip |
Initial revision
Diffstat (limited to 'dev-libs/cyrus-sasl')
-rw-r--r-- | dev-libs/cyrus-sasl/files/saslauthd2.rc6 | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/dev-libs/cyrus-sasl/files/saslauthd2.rc6 b/dev-libs/cyrus-sasl/files/saslauthd2.rc6 new file mode 100644 index 000000000000..d2215fde4447 --- /dev/null +++ b/dev-libs/cyrus-sasl/files/saslauthd2.rc6 @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# /space/gentoo/cvsroot/gentoo-x86/dev-libs/cyrus-sasl/files/saslauthd.rc6,v 1.1 2002/02/19 00:36:20 woodchip Exp + +depend() { + need net +} + +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/mux.pid + eend $? +} |