pkgsrc/security/cyrus-sasl/files/saslauthd.sh
grant 0c5bb6abcc Make these scripts more portable by taking advantage of automatic rc.d
script handling and using @RCD_SCRIPTS_SHELL@.

as discussed with jlam.
2002-09-20 02:01:54 +00:00

45 lines
931 B
Bash

#!@RCD_SCRIPTS_SHELL@
#
# $NetBSD: saslauthd.sh,v 1.3 2002/09/20 02:02:00 grant Exp $
#
# The saslauthd daemon allows cleartext UNIX password authentication via
# several authentication mechanisms with Cyrus SASL.
#
# PROVIDE: saslauthd
# REQUIRE: DAEMON
if [ -f /etc/rc.subr ]
then
. /etc/rc.subr
fi
name="saslauthd"
rcvar="${name}"
command="@PREFIX@/sbin/saslauthd"
command_args="& sleep 2"
start_precmd="saslauthd_precmd"
# Default to authenticating against local password database.
if [ -z "${saslauthd_flags}" ]
then
saslauthd_flags="-a getpwent"
fi
saslauthd_precmd()
{
if [ ! -d @SASLSOCKETDIR@ ]
then
@MKDIR@ @SASLSOCKETDIR@
@CHMOD@ 0700 @SASLSOCKETDIR@
@CHOWN@ @CYRUS_USER@ @SASLSOCKETDIR@
fi
}
if [ -f /etc/rc.subr ]
then
load_rc_config $name
run_rc_command "$1"
else
@ECHO@ -n " ${name}"
${command} ${saslauthd_flags} ${command_args}
fi