]> git.pld-linux.org Git - packages/cyrus-sasl.git/blame - saslauthd.init
- massive attack, adding Source-md5
[packages/cyrus-sasl.git] / saslauthd.init
CommitLineData
f1b54e59
AF
1#!/bin/sh
2#
3# saslauthd SASL AUTH Daemon
4#
5# chkconfig: 2345 40 60
6# description: SASL AUTH Daemon
7# processname: saslauthd
8# pidfile: /var/state/sasl/mux.pid
9
10# $Id$
11
12# Source function library
13. /etc/rc.d/init.d/functions
14
15# Get service config
16[ -f /etc/sysconfig/saslauthd ] && . /etc/sysconfig/saslauthd
17
18if [ "x$SASL_AUTHMECH" != "x" ] ; then
19 SASLAUTHD_OPTS="$SASLAUTHD_OPTS -a $SASL_AUTHMECH"
20fi
21
22if [ "x$SASL_RIMAP_HOSTNAME" != "x" ] ; then
23 SASLAUTHD_OPTS="$SASLAUTHD_OPTS -H $SASL_RIMAP_HOSTNAME"
24fi
25
351fc67a 26#if is_yes "$SASL_TIME_OF_DAY_LOGIN_RESTRICTIONS" ; then
27# SASLAUTHD_OPTS="$SASLAUTHD_OPTS -T"
28#fi
f1b54e59 29
7436efc0 30
f1b54e59
AF
31# See how we were called.
32case "$1" in
33 start)
34 # Check if the service is already running?
7436efc0 35 if [ ! -f /var/lock/subsys/saslauthd ]; then
f1b54e59
AF
36 msg_starting salsauthd
37 daemon saslauthd $SASLAUTHD_OPTS
7436efc0 38 RETVAL=$?
39 [ $RETVAL -eq 0 ] && touch /var/lock/subsys/saslauthd
f1b54e59 40 else
7436efc0 41 msg_already_running saslauthd
42 exit 1
f1b54e59
AF
43 fi
44 ;;
45 stop)
7436efc0 46 # Stop daemons.
f1b54e59 47 if [ -f /var/lock/subsys/saslauthd ]; then
7436efc0 48 msg_stopping saslauthd
49 killproc saslauthd
50 rm -f /var/lock/subsys/saslauthd /var/run/saslauthd.pid >/dev/null 2>&1
51 else
9e27eb77 52 msg_not_running saslauthd
7436efc0 53 exit 1
f1b54e59
AF
54 fi
55 ;;
56 status)
57 status saslauthd
58 exit $?
59 ;;
60 restart|reload)
61 $0 stop
62 $0 start
63 ;;
7436efc0 64 force-reload)
65 $0 stop && $0 start
66 exit $?
67 ;;
f1b54e59 68 *)
7436efc0 69 msg_usage "$0 {start|stop|restart|reload|force-reload|status}"
f1b54e59
AF
70 exit 1
71 ;;
72esac
73
74exit $RETVAL
This page took 0.07356 seconds and 4 git commands to generate.