diff options
author | jlam <jlam> | 2004-01-09 20:35:03 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-01-09 20:35:03 +0000 |
commit | a4c264ab6dbf83ef55e33f090976ba879e4c4147 (patch) | |
tree | c8b00770d9b178caeb820fea82e3116b724df218 /security | |
parent | a24118dcf5f03aab2a37537c699ac278d90ca527 (diff) | |
download | pkgsrc-a4c264ab6dbf83ef55e33f090976ba879e4c4147.tar.gz |
Remove references to saslauthd from this package.
Diffstat (limited to 'security')
-rw-r--r-- | security/cyrus-sasl2/Makefile | 3 | ||||
-rw-r--r-- | security/cyrus-sasl2/files/saslauthd.sh | 44 |
2 files changed, 1 insertions, 46 deletions
diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index be33b166960..b7e89045612 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 2004/01/09 19:37:48 jlam Exp $ +# $NetBSD: Makefile,v 1.19 2004/01/09 20:35:03 jlam Exp $ .include "Makefile.common" @@ -41,7 +41,6 @@ DEINSTALL_EXTRA_TMPL+= ${.CURDIR}/DEINSTALL PKG_GROUPS= ${CYRUS_GROUP} PKG_USERS= ${CYRUS_USER}:${CYRUS_GROUP}::::${SH} -RCD_SCRIPTS= saslauthd OWN_DIRS= ${PLUGINDIR} MESSAGE_SUBST+= _PLUGINDIR=${_PLUGINDIR} diff --git a/security/cyrus-sasl2/files/saslauthd.sh b/security/cyrus-sasl2/files/saslauthd.sh deleted file mode 100644 index c7a3170b31d..00000000000 --- a/security/cyrus-sasl2/files/saslauthd.sh +++ /dev/null @@ -1,44 +0,0 @@ -#!@RCD_SCRIPTS_SHELL@ -# -# $NetBSD: saslauthd.sh,v 1.4 2003/11/21 10:41:56 jlam 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" -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@ 0755 @SASLSOCKETDIR@ - @CHOWN@ @ROOT_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 |