diff options
author | chris <chris@pkgsrc.org> | 2002-11-23 14:44:53 +0000 |
---|---|---|
committer | chris <chris@pkgsrc.org> | 2002-11-23 14:44:53 +0000 |
commit | 8f034dce82da1b78cd8b81204fba544851b7930e (patch) | |
tree | 53d69a7f82aa6a4fd46f3284680d992c90767492 /security/cyrus-sasl2/files | |
parent | 2ec06e22a20ab04be4ddd747387971103b1c8de9 (diff) | |
download | pkgsrc-8f034dce82da1b78cd8b81204fba544851b7930e.tar.gz |
Match the default for the sasl socket dir, IE /var/run/saslauthd.
Also the dir is now root owned, but with 755 permissions, previously it was
cyrus owned.
Bump PKGREVISION to 2.
Diffstat (limited to 'security/cyrus-sasl2/files')
-rw-r--r-- | security/cyrus-sasl2/files/saslauthd.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/security/cyrus-sasl2/files/saslauthd.sh b/security/cyrus-sasl2/files/saslauthd.sh index 84a31a47826..ee6f74a399b 100644 --- a/security/cyrus-sasl2/files/saslauthd.sh +++ b/security/cyrus-sasl2/files/saslauthd.sh @@ -1,6 +1,6 @@ #!@RCD_SCRIPTS_SHELL@ # -# $NetBSD: saslauthd.sh,v 1.1.1.1 2002/10/27 15:09:00 chris Exp $ +# $NetBSD: saslauthd.sh,v 1.2 2002/11/23 14:44:54 chris Exp $ # # The saslauthd daemon allows cleartext UNIX password authentication via # several authentication mechanisms with Cyrus SASL. @@ -30,8 +30,8 @@ saslauthd_precmd() if [ ! -d @SASLSOCKETDIR@ ] then @MKDIR@ @SASLSOCKETDIR@ - @CHMOD@ 0700 @SASLSOCKETDIR@ - @CHOWN@ @CYRUS_USER@ @SASLSOCKETDIR@ + @CHMOD@ 0755 @SASLSOCKETDIR@ + @CHOWN@ root @SASLSOCKETDIR@ fi } |