diff options
author | Christian Heim <phreak@gentoo.org> | 2007-06-14 19:42:03 +0000 |
---|---|---|
committer | Christian Heim <phreak@gentoo.org> | 2007-06-14 19:42:03 +0000 |
commit | cd32825ee7b2f045a5d7ea7c951c4d6710a06c6f (patch) | |
tree | f8717df667e4aa531bcc44da480bf32059d9e997 /net-www/mod_auth_pam | |
parent | ppc stable, bug #182011 (diff) | |
download | gentoo-2-cd32825ee7b2f045a5d7ea7c951c4d6710a06c6f.tar.gz gentoo-2-cd32825ee7b2f045a5d7ea7c951c4d6710a06c6f.tar.bz2 gentoo-2-cd32825ee7b2f045a5d7ea7c951c4d6710a06c6f.zip |
Fixing apache2.pam as pointed out in #155050 (thanks to candrews at integralblue.com).
(Portage version: 2.1.2.9)
Diffstat (limited to 'net-www/mod_auth_pam')
-rw-r--r-- | net-www/mod_auth_pam/ChangeLog | 6 | ||||
-rw-r--r-- | net-www/mod_auth_pam/files/apache2.pam | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/net-www/mod_auth_pam/ChangeLog b/net-www/mod_auth_pam/ChangeLog index f6cde82aba32..4dc81c386561 100644 --- a/net-www/mod_auth_pam/ChangeLog +++ b/net-www/mod_auth_pam/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/mod_auth_pam # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pam/ChangeLog,v 1.20 2007/05/12 10:57:59 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/mod_auth_pam/ChangeLog,v 1.21 2007/06/14 19:42:03 phreak Exp $ + + 14 Jun 2007; Christian Heim <phreak@gentoo.org> files/apache2.pam: + Fixing apache2.pam as pointed out in #155050 (thanks to candrews at + integralblue.com). 12 May 2007; Luca Longinotti <chtekk@gentoo.org> -files/10_mod_auth_pam_ap1.conf, diff --git a/net-www/mod_auth_pam/files/apache2.pam b/net-www/mod_auth_pam/files/apache2.pam index a0539df577f3..e80e5548cb51 100644 --- a/net-www/mod_auth_pam/files/apache2.pam +++ b/net-www/mod_auth_pam/files/apache2.pam @@ -1,6 +1,6 @@ -#%PAM-1.0 -auth required /lib/security/pam_stack.so service=system-auth -auth required /lib/security/pam_nologin.so -account required /lib/security/pam_stack.so service=system-auth -password required /lib/security/pam_stack.so service=system-auth -session required /lib/security/pam_stack.so service=system-auth +#%PAM-1.0
+auth include system-auth
+auth required pam_nologin.so
+account include system-auth
+password include system-auth
+session include system-auth
|