diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 09:15:49 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-13 09:15:49 +0000 |
commit | 5df65b6a9e151c14c78597afcd7daa677425b881 (patch) | |
tree | be6849cf12bc09ca794c42b40393a192042f31f5 | |
parent | 0889903b0ab71ba8925e45f60730c585c67adb1e (diff) | |
download | drakx-5df65b6a9e151c14c78597afcd7daa677425b881.tar drakx-5df65b6a9e151c14c78597afcd7daa677425b881.tar.gz drakx-5df65b6a9e151c14c78597afcd7daa677425b881.tar.bz2 drakx-5df65b6a9e151c14c78597afcd7daa677425b881.tar.xz drakx-5df65b6a9e151c14c78597afcd7daa677425b881.zip |
stop messing with likeauth and nullok options and keep them on the pam_unix line (bugzilla #12066)
-rw-r--r-- | perl-install/authentication.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index 11716b539..82b94fdb0 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -410,7 +410,7 @@ sub set_pam_authentication { } if ($module eq 'pam_unix' && $special{$type}) { my @para_for_last = - $type eq 'auth' ? qw(likeauth nullok use_first_pass) : + $type eq 'auth' ? qw(use_first_pass) : $type eq 'account' ? qw(use_first_pass) : @{[]}; @para = difference2(\@para, \@para_for_last); |