diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-30 07:17:03 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-30 07:17:03 +0000 |
commit | 943fa08473221ab750a2596e0b4629603d85bd3e (patch) | |
tree | 51c40afe75b2f7ebebd14c8539cfc09723af9710 /perl-install/install_steps_interactive.pm | |
parent | b9e95a3303535429105cb5e14e3a5df7dd738e77 (diff) | |
download | drakx-943fa08473221ab750a2596e0b4629603d85bd3e.tar drakx-943fa08473221ab750a2596e0b4629603d85bd3e.tar.gz drakx-943fa08473221ab750a2596e0b4629603d85bd3e.tar.bz2 drakx-943fa08473221ab750a2596e0b4629603d85bd3e.tar.xz drakx-943fa08473221ab750a2596e0b4629603d85bd3e.zip |
only allow Active Directory for the corporate product
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index cefc38205..8e8b7a16d 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1212,7 +1212,7 @@ sub setRootPassword { } } }, [ { label => N("Password"), val => \$sup->{password}, hidden => 1 }, { label => N("Password (again)"), val => \$sup->{password2}, hidden => 1 }, -{ label => N("Authentication"), val => \$authentication_kind, type => 'list', list => [ authentication::kinds() ], format => \&authentication::kind2name, advanced => 1 }, +{ label => N("Authentication"), val => \$authentication_kind, type => 'list', list => [ authentication::kinds($o->{meta_class}) ], format => \&authentication::kind2name, advanced => 1 }, ]) or delete $sup->{password}; authentication::ask_parameters($o, $o->{netc}, $o->{authentication}, $authentication_kind) or goto &setRootPassword; |