]> git.pld-linux.org Git - packages/cyrus-sasl.git/blobdiff - saslauthd.init
- allow building without Nagios support
[packages/cyrus-sasl.git] / saslauthd.init
index 41ee545b3216c8e44ecaa03735e7ceee5b15f3c4..c610aaf4704ae62305791b781dc6fe1e52910f26 100644 (file)
@@ -1,18 +1,33 @@
 #!/bin/sh
 #
-# saslauthd    SASL AUTH Daemon
+# saslauthd            SASL AUTH Daemon
 #
 # chkconfig:   2345 40 60
+#
 # description: SASL AUTH Daemon
+#
 # processname: saslauthd
 # pidfile:     /var/lib/sasl2/saslauthd.pid
-
+#
 # $Id$
 
 # Source function library
 . /etc/rc.d/init.d/functions
 
-# Get service config
+# Get network config
+. /etc/sysconfig/network
+
+# Check that networking is up.
+if is_yes "${NETWORKING}"; then
+       if [ ! -f /var/lock/subsys/network -a "$1" != stop -a "$1" != status ]; then
+               msg_network_down "SASL AUTH Daemon"
+               exit 1
+       fi
+else
+       exit 0
+fi
+
+# Get service config - may override defaults
 [ -f /etc/sysconfig/saslauthd ] && . /etc/sysconfig/saslauthd
 
 if [ "$SASL_AUTHMECH" ]; then
@@ -32,34 +47,39 @@ if [ "$SASLAUTHD_THREADS" ]; then
 fi
 
 start() {
-       if [ ! -f /var/lock/subsys/saslauthd ]; then
-               msg_starting saslauthd
-               daemon /usr/sbin/saslauthd $SASLAUTHD_OPTS
-               RETVAL=$?
-               [ $RETVAL -eq 0 ] && touch /var/lock/subsys/saslauthd
-       else
-               msg_already_running saslauthd
+       # Check if the service is already running?
+       if [ -f /var/lock/subsys/saslauthd ]; then
+               msg_already_running "SASL AUTH Daemon"
+               return
        fi
+
+       msg_starting "SASL AUTH Daemon"
+       daemon /usr/sbin/saslauthd $SASLAUTHD_OPTS
+       RETVAL=$?
+       [ $RETVAL -eq 0 ] && touch /var/lock/subsys/saslauthd
 }
 
 stop() {
-       if [ -f /var/lock/subsys/saslauthd ]; then
-               msg_stopping saslauthd
-               killproc saslauthd
-               rm -f /var/lock/subsys/saslauthd /var/lib/sasl2/saslauthd.pid >/dev/null 2>&1
-       else
-               msg_not_running saslauthd
+       if [ ! -f /var/lock/subsys/saslauthd ]; then
+               msg_not_running "SASL AUTH Daemon"
+               return
        fi
+
+       # Stop daemons.
+       msg_stopping "SASL AUTH Daemon"
+       killproc saslauthd
+       rm -f /var/lock/subsys/saslauthd /var/lib/sasl2/saslauthd.pid >/dev/null 2>&1
 }
 
 condrestart() {
-       if [ -f /var/lock/subsys/saslauthd ]; then
-               stop
-               start
-       else
-               msg_not_running saslauthd
+       if [ ! -f /var/lock/subsys/saslauthd ]; then
+               msg_not_running "SASL AUTH Daemon"
                RETVAL=$1
+               return
        fi
+
+       stop
+       start
 }
 
 RETVAL=0
@@ -83,7 +103,7 @@ case "$1" in
        ;;
   status)
        status saslauthd
-       exit $?
+       RETVAL=$?
        ;;
   *)
        msg_usage "$0 {start|stop|restart|try-restart|force-reload|status}"
This page took 0.189292 seconds and 4 git commands to generate.