diff options
-rw-r--r-- | perl-install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/draksec | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS index 1129712df..f801a1f61 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- draksec: + o fix switching from "no_password" to "_password" (#34490) + Version 10.4.239 - 5 October 2007, by Thierry Vignaud - finish-install: fix release notes window size diff --git a/perl-install/standalone/draksec b/perl-install/standalone/draksec index 3e9f09d72..38ba2c02f 100755 --- a/perl-install/standalone/draksec +++ b/perl-install/standalone/draksec @@ -301,7 +301,7 @@ sub set_auth_value { if ($auth eq 'no_passwd') { symlinkf('../../etc/pam.d/mandriva-console-auth', "/etc/pam.d/$prog"); } else { - symlink('../../etc/pam.d/mandriva-simple-auth', "/etc/pam.d/$prog"); + symlinkf('../../etc/pam.d/mandriva-simple-auth', "/etc/pam.d/$prog"); my $value = $auth eq 'user_passwd' ? '<user>' : 'root'; substInFile { s/^USER=.*/USER=$value/; |