diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-02-18 16:54:08 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-02-18 16:54:08 +0000 |
commit | bc18d384e233db353e5397cd080f201b32a080b0 (patch) | |
tree | eb730f440b10d5c6d14cd6c3c03a8bb3cd786f99 /perl-install | |
parent | f8113d730040b7dc29dca097cb59cf191ae56095 (diff) | |
download | drakx-bc18d384e233db353e5397cd080f201b32a080b0.tar drakx-bc18d384e233db353e5397cd080f201b32a080b0.tar.gz drakx-bc18d384e233db353e5397cd080f201b32a080b0.tar.bz2 drakx-bc18d384e233db353e5397cd080f201b32a080b0.tar.xz drakx-bc18d384e233db353e5397cd080f201b32a080b0.zip |
(setRootPassword): display "Authentication" in Advanced
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 86c9a2ded..68a70c526 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1083,9 +1083,7 @@ sub setRootPassword { } } }, [ { label => N("Password"), val => \$sup->{password}, hidden => 1 }, { label => N("Password (again)"), val => \$sup->{password2}, hidden => 1 }, - if_($::expert, -{ label => N("Authentication"), val => \$auth, list => [ N_("Local files"), N_("LDAP"), N_("NIS"), N_("Windows Domain") ], format => \&translate }, - ), +{ label => N("Authentication"), val => \$auth, list => [ N_("Local files"), N_("LDAP"), N_("NIS"), N_("Windows Domain") ], format => \&translate, advanced => 1 }, ]) or return; if ($auth eq N_("LDAP")) { |