]> git.pld-linux.org Git - packages/cyrus-sasl.git/commitdiff
This commit was manufactured by cvs2git to create branch 'RA-branch'.
authorcvs2git <feedback@pld-linux.org>
Tue, 16 Jul 2002 10:05:33 +0000 (10:05 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Sprout from master 2002-07-16 10:05:33 UTC Jakub Bogusz <qboosh@pld-linux.org> '- updated ac25x patch to work with autoconf 2.53'
Delete:
    saslauthd.init

saslauthd.init [deleted file]

diff --git a/saslauthd.init b/saslauthd.init
deleted file mode 100644 (file)
index 6fa6845..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/bin/sh
-#
-# saslauthd    SASL AUTH Daemon
-#
-# chkconfig:   2345 40 60
-# description: SASL AUTH Daemon
-# processname: saslauthd
-# pidfile:     /var/state/sasl/mux.pid
-
-# $Id$
-
-# Source function library
-. /etc/rc.d/init.d/functions
-
-# Get service config
-[ -f /etc/sysconfig/saslauthd ] && . /etc/sysconfig/saslauthd
-
-if [ "x$SASL_AUTHMECH" != "x" ] ; then
-       SASLAUTHD_OPTS="$SASLAUTHD_OPTS -a $SASL_AUTHMECH"
-fi
-
-if [ "x$SASL_RIMAP_HOSTNAME" != "x" ] ; then
-       SASLAUTHD_OPTS="$SASLAUTHD_OPTS -H $SASL_RIMAP_HOSTNAME"
-fi
-
-if is_yes "$SASL_TIME_OF_DAY_LOGIN_RESTRICTIONS" ; then
-       SASLAUTHD_OPTS="$SASLAUTHD_OPTS -T"
-fi
-
-# See how we were called.
-case "$1" in
-  start)
-       # Check if the service is already running?
-        if [ ! -f /var/lock/subsys/saslauthd ]; then
-               msg_starting salsauthd
-               daemon saslauthd $SASLAUTHD_OPTS
-               RETVAL=$?
-               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/saslauthd
-       else
-               msg_already_running saslauthd
-               exit 1
-       fi
-       ;;
-  stop)
-        # Stop daemons.
-       if [ -f /var/lock/subsys/saslauthd ]; then
-                msg_stopping saslauthd
-                killproc saslauthd
-                rm -f /var/lock/subsys/saslauthd /var/run/saslauthd.pid >/dev/null 2>&1
-        else
-               msg_not_running saslauthd
-               exit 1
-       fi
-       ;;
-  status)
-       status saslauthd
-       exit $?
-       ;;
-  restart|reload)
-       $0 stop
-       $0 start
-       ;;
-  *)
-       msg_usage "$0 {start|stop|restart|status}"
-       exit 1
-       ;;
-esac
-
-exit $RETVAL
This page took 0.121843 seconds and 4 git commands to generate.