summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mandriva.org>2007-10-10 12:42:08 +0000
committerThierry Vignaud <tv@mandriva.org>2007-10-10 12:42:08 +0000
commite0a296b42b098573d77109c9fb2dd1a68499ab2d (patch)
treee12c6965389e23f4ac1c26d50c23b6b92986f823
parent2a0cbb6aad80cf9bf1063c14fd4570688b98280b (diff)
downloaddrakx-backup-do-not-use-e0a296b42b098573d77109c9fb2dd1a68499ab2d.tar
drakx-backup-do-not-use-e0a296b42b098573d77109c9fb2dd1a68499ab2d.tar.gz
drakx-backup-do-not-use-e0a296b42b098573d77109c9fb2dd1a68499ab2d.tar.bz2
drakx-backup-do-not-use-e0a296b42b098573d77109c9fb2dd1a68499ab2d.tar.xz
drakx-backup-do-not-use-e0a296b42b098573d77109c9fb2dd1a68499ab2d.zip
(set_auth_value) fix switching from "no_password" to "(root|user)_password" (#34490)
-rw-r--r--perl-install/NEWS3
-rwxr-xr-xperl-install/standalone/draksec2
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/;