Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37573196
en ru br
ALT Linux repos
S:0.72.0-alt1
5.0: 0.61.0-alt1
4.1: 0.60.2-alt1
4.0: 0.59.1-alt1.0
3.0: 0.56-alt1

Group :: System/Libraries
RPM: courier-authlib

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

#!/bin/sh
#
# courier-authdaemon Courier-IMAP authentication daemon.
#
# chkconfig: 35 70 30
# description: Courier-IMAP authentication daemon is used as \
# proxy between Courier's POP3/IMAP servers and \
# auth-info storages (eg. LDAP, SQL, DB files).
# processname: authdaemond
# config: /etc/courier-authlib/authdaemon.conf
# config: /etc/courier-authlib/authdaemon-ldap.conf
# config: /etc/courier-authlib/authdaemon-mysql.conf
# config: /etc/courier-authlib/authdaemon-pgsql.conf
# pidfile: /var/run/courier-authdaemon.pid

# Do not load RH compatibility interface.
WITHOUT_RC_COMPAT=1

# Source function library.
. /etc/init.d/functions

LIBEXEC_DIR=/usr/lib/courier-authlib

AUTHD_BIN=$LIBEXEC_DIR/authdaemond
DAEMON=/usr/sbin/courier-authdaemon

. /etc/courier-authlib/authdaemon.conf

[ -n "$COURIER_UID" ] || COURIER_UID="courier"
[ -n "$COURIER_GID" ] || COURIER_GID="courier"

PIDFILE=/var/run/courier-authdaemon.pid
LOCKFILE=/var/lock/subsys/courier-authdaemon

[ -x $AUTHD_BIN ] || exit;

RETVAL=0

start()
{
msg_starting $"Courier authentication daemon"
$DAEMON "$LOGGEROPTS" -pid="$PIDFILE" -lock="$LOCKFILE" \
-user="$COURIER_UID" -group="$COURIER_GID" \
-droproot -respawn \
-start -name=courier-authdaemon "$AUTHD_BIN"

RETVAL=$?
if [ $RETVAL -eq 0 ]; then
success "authdaemond startup"
else
failure "authdaemon startup"
fi
echo
return $RETVAL
}

stop()
{
msg_stopping $"Courier authentication daemon"
$DAEMON -pid="$PIDFILE" -lock="$LOCKFILE" -stop "$AUTHD_BIN"

RETVAL=$?
if [ $RETVAL -eq 0 ]; then
success "authdaemond shutdown"
rm -f "$PIDFILE"
rm -f "$LOCKFILE"
else
failure "authdaemond shutdown"
fi
echo
return $RETVAL
}

restart()
{
stop
start
}

# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
reload)
echo "Reload is not supported. Please, use restart instead."
;;
restart)
restart
;;
condstop)
if [ -e "$LOCKFILE" ]; then
stop
fi
;;
condrestart)
if [ -e "$LOCKFILE" ]; then
restart
fi
;;
status)
status --pidfile "$PIDFILE" courier-authdaemon
RETVAL=$?
;;
*)
msg_usage "${0##*/} {start|stop|restart|condstop|condrestart|status}"
RETVAL=1
esac

exit $RETVAL
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin