freeradius/freeradius-0.9.0-pam-multilib.patch
cvsdist e14143129c auto-import changelog data from freeradius-0.9.0-2.src.rpm
Tue Sep 23 2003 Thomas Woerner <twoerner@redhat.com> 0.9.0-2
- add ltdl patch again (libtool ltld s searching for .la only)
Mon Sep 22 2003 Nalin Dahyabhai <nalin@redhat.com>
- modify default PAM configuration to remove the directory part of the
    module name, so that 32- and 64-bit libpam (called from 32- or 64-bit
    radiusd) on multilib systems will always load the right module for the
    architecture
- modify default PAM configuration to use pam_stack
Tue Jul 22 2003 Thomas Woerner <twoerner@redhat.com> 0.9.0-1
- 0.9.0 final
Wed Jul 16 2003 Thomas Woerner <twoerner@redhat.com> 0.9.0-0.9.0
- new version 0.9.0 pre3
Thu May 22 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-6
- included directory /var/log/radius/radacct for logrotate
Wed May 21 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-5
- moved log and run dir to files section, cleaned up post
Wed May 21 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-4
- added missing run dir in post
Tue May 20 2003 Thomas Woerner <twoerner@redhat.com> 0.8.1-3
- fixed module load patch
Fri May 16 2003 Thomas Woerner <twoerner@redhat.com>
- removed la files, removed devel package
- split into 4 packages: freeradius, freeradius-mysql,
    freeradius-postgresql, freeradius-unixODBC
- fixed requires and buildrequires
- create logging dir in post if it does not exist
- fixed module load without la files
Thu Apr 17 2003 Thomas Woerner <twoerner@redhat.com>
- Initial build.
2004-09-09 04:51:36 +00:00

22 lines
1.1 KiB
Diff

Remove the directory component from all paths. This lets libpam search its
default directory for modules, which is needed on multilib systems because
a 64-bit binary can't use the 32-bit modules which are stored in /lib/security.
Use pam_stack to make password-checking mechanisms configurable by authconfig.
--- freeradius-0.9.0/redhat/radiusd-pam 2003-09-22 10:07:03.000000000 -0400
+++ freeradius-0.9.0/redhat/radiusd-pam 2003-09-22 10:07:13.000000000 -0400
@@ -1,7 +1,6 @@
#%PAM-1.0
-auth required /lib/security/pam_unix_auth.so shadow nullok
-auth required /lib/security/pam_nologin.so
-account required /lib/security/pam_unix_acct.so
-password required /lib/security/pam_cracklib.so
-password required /lib/security/pam_unix_password.so shadow nullok use_authtok
-session required /lib/security/pam_unix_session.so
+auth required pam_stack.so service=system-auth
+auth required pam_nologin.so
+account required pam_stack.so service=system-auth
+password required pam_stack.so service=system-auth
+session required pam_stack.so service=system-auth