/usr/share/doc/pam/txts
NameSizeModeActions
README.pam_access52530644editdlrm
README.pam_chroot15100644editdlrm
README.pam_console19250644editdlrm
README.pam_cracklib97570644editdlrm
README.pam_debug19950644editdlrm
README.pam_deny10350644editdlrm
README.pam_echo11000644editdlrm
README.pam_env36270644editdlrm
README.pam_exec22300644editdlrm
README.pam_faildelay8270644editdlrm
README.pam_faillock60620644editdlrm
README.pam_filter31020644editdlrm
README.pam_ftp16990644editdlrm
README.pam_group21750644editdlrm
README.pam_issue13560644editdlrm
README.pam_keyinit22450644editdlrm
README.pam_lastlog25970644editdlrm
README.pam_limits24210644editdlrm
README.pam_listfile36260644editdlrm
README.pam_localuser11670644editdlrm
README.pam_loginuid11170644editdlrm
README.pam_mail20090644editdlrm
README.pam_mkhomedir13610644editdlrm
README.pam_motd25880644editdlrm
README.pam_namespace115430644editdlrm
README.pam_nologin13480644editdlrm
README.pam_permit9070644editdlrm
README.pam_postgresok3460644editdlrm
README.pam_pwhistory22430644editdlrm
README.pam_rhosts18820644editdlrm
README.pam_rootok10860644editdlrm
README.pam_securetty13420644editdlrm
README.pam_selinux29090644editdlrm
README.pam_sepermit16480644editdlrm
README.pam_shells6530644editdlrm
README.pam_stress20600644editdlrm
README.pam_succeed_if28640644editdlrm
README.pam_time13010644editdlrm
README.pam_timestamp16160644editdlrm
README.pam_tty_audit27790644editdlrm
README.pam_umask16310644editdlrm
README.pam_unix72650644editdlrm
README.pam_userdb29730644editdlrm
README.pam_usertype12000644editdlrm
README.pam_warn12240644editdlrm
README.pam_wheel19680644editdlrm
README.pam_xauth36950644editdlrm
Edit: /usr/share/doc/pam/txts/README.pam_pwhistory (2243B)
pam_pwhistory -- PAM module to remember last passwords -------------------------------------------------------------------------- DESCRIPTION This module saves the last passwords for each user in order to force password change history and keep the user from alternating between the same password too frequently. This module does not work together with kerberos. In general, it does not make much sense to use this module in conjunction with NIS or LDAP, since the old passwords are stored on the local machine and are not available on another machine for password history checking. OPTIONS debug Turns on debugging via syslog(3). use_authtok When password changing enforce the module to use the new password provided by a previously stacked password module (this is used in the example of the stacking of the pam_cracklib module documented below). enforce_for_root If this option is set, the check is enforced for root, too. remember=N The last N passwords for each user are saved. The default is 10. Value of 0 makes the module to keep the existing contents of the opasswd file unchanged. retry=N Prompt user at most N times before returning with error. The default is 1. authtok_type=STRING See pam_get_authtok(3) for more details. conf=/path/to/config-file Use another configuration file instead of the default /etc/security/pwhistory.conf. The options for configuring the module behavior are described in the pwhistory.conf(5) manual page. The options specified on the module command line override the values from the configuration file. EXAMPLES An example password section would be: #%PAM-1.0 password required pam_pwhistory.so password required pam_unix.so use_authtok In combination with pam_cracklib: #%PAM-1.0 password required pam_cracklib.so retry=3 password required pam_pwhistory.so use_authtok password required pam_unix.so use_authtok AUTHOR pam_pwhistory was written by Thorsten Kukuk