diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-09-30 07:54:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-09-30 07:54:45 +0000 |
commit | f09bb9ea9931ea845bf4e3e509442eca66573842 (patch) | |
tree | ebce6d377a9b54cf890b31fa86462ca2c883249d /perl-install/authentication.pm | |
parent | 943fa08473221ab750a2596e0b4629603d85bd3e (diff) | |
download | drakx-f09bb9ea9931ea845bf4e3e509442eca66573842.tar drakx-f09bb9ea9931ea845bf4e3e509442eca66573842.tar.gz drakx-f09bb9ea9931ea845bf4e3e509442eca66573842.tar.bz2 drakx-f09bb9ea9931ea845bf4e3e509442eca66573842.tar.xz drakx-f09bb9ea9931ea845bf4e3e509442eca66573842.zip |
kinds() must return all kinds
Diffstat (limited to 'perl-install/authentication.pm')
-rw-r--r-- | perl-install/authentication.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index 2a647ce37..783fadac7 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -4,8 +4,9 @@ use common; use any; sub kinds { + my $no_para = @_ == 0; my ($meta_class) = @_; - my $allow_AD = $meta_class =~ /corporate/; + my $allow_AD = $no_para || $meta_class =~ /corporate/; ('local', 'LDAP', 'NIS', 'winbind', if_($allow_AD, 'AD', 'SMBKRB')); } |