wolfden wrote:actually it can effect more than just that file, to find the files u need to change:
grep pam_timestamp /etc/pam.d/*
grep pam_radius /etc/pam.d/*
grep pam_pwdb /etc/pam.d/* than make the appropriate changes according to:
http://www.gentoo.org/proj/en/base/pam/upgrade-0.99.xml
None of these files exist under pam.d on my system neither does system-config-lvm. Is it because I did not install samba? Is there a work around to install pam 0.99? Besides waiting for 3.4g?
Maybe someone could interpret this for me? is there a text file to edit somewhere?
From gentoo pam update maunual: "To convert an old configuration file that uses pam_stack into an updated one that works with the include directive, you just need to replace the lines as shown:
Code Listing 1.2:
Replace pam_stack usage with the include directive (The old configuration)
auth required pam_stack.so service=system-auth
(Replace it with this)
auth include system-auth
Important: There are four facilities in PAM configuration: auth, account, password and session. You need to update the configuration files for all of them, not just auth.
Please note that you might also need to reorder the calls when making this change, as sometimes modules like pam_nologin were listed after pam_stack, even though they now need to be listed before the include directive.
Code Listing 1.3: Handling multiple-modules with pam_stack
(Old way)
auth required pam_stack.so service=system-auth
auth required pam_nologin.so
(New way)
auth required pam_nologin.so
auth include system-auth"