diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-07-23 16:54:47 +0200 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2008-07-23 16:54:47 +0200 |
commit | 361a55c86c7706ed9468863bb8ce84f375b2cea3 (patch) | |
tree | 9c07d5cc54a0ec2d2e1d90df509a490d9ab7e953 | |
parent | Fix #if vs #ifdef for pam_ssh and Gentoo/FreeBSD. (diff) | |
download | pambase-361a55c86c7706ed9468863bb8ce84f375b2cea3.tar.gz pambase-361a55c86c7706ed9468863bb8ce84f375b2cea3.tar.bz2 pambase-361a55c86c7706ed9468863bb8ce84f375b2cea3.zip |
Remove try_first_pass from pam_cracklib.
The try_first_pass option is not supported (any longer) by the
pam_cracklib module shipped with Linux-PAM.
This change will close bug #231819 as reported by Brian Claywell.
-rw-r--r-- | system-auth.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system-auth.in b/system-auth.in index 1048eb4..6a7bbd6 100644 --- a/system-auth.in +++ b/system-auth.in @@ -9,7 +9,7 @@ auth required pam_unix.so try_first_pass LIKEAUTH nullok DEBUG account required pam_unix.so DEBUG #if HAVE_CRACKLIB -password required pam_cracklib.so difok=2 minlen=8 dcredit=2 ocredit=2 try_first_pass retry=3 DEBUG +password required pam_cracklib.so difok=2 minlen=8 dcredit=2 ocredit=2 retry=3 DEBUG #endif #if HAVE_PASSWDQC password required pam_passwdqc.so min=8,8,8,8,8 retry=3 |