diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-03-22 09:22:37 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-03-22 09:22:37 +0000 |
commit | 84d17494d696db27d51fcad95e238f58bc866646 (patch) | |
tree | d148c1cad1f9b3cf11140df4ac6ac9f898af31ca /perl-install/standalone | |
parent | cebcb11f40d5e1903690bd337148d4a68b8151e5 (diff) | |
download | drakx-84d17494d696db27d51fcad95e238f58bc866646.tar drakx-84d17494d696db27d51fcad95e238f58bc866646.tar.gz drakx-84d17494d696db27d51fcad95e238f58bc866646.tar.bz2 drakx-84d17494d696db27d51fcad95e238f58bc866646.tar.xz drakx-84d17494d696db27d51fcad95e238f58bc866646.zip |
SmartCard authentication needs a (bloody) proprietary package,
only propose it when the package is available
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakauth | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakauth b/perl-install/standalone/drakauth index fe5bae4bf..276ecd287 100755 --- a/perl-install/standalone/drakauth +++ b/perl-install/standalone/drakauth @@ -22,7 +22,7 @@ my $meta_class = { getVarsFromSh("/etc/sysconfig/system") }->{META_CLASS}; main: $in->ask_from(N("Authentication"), authentication::kind2description(), [ - { label => N("Authentication"), val => \$kind, type => 'list' , list => [ authentication::kinds($meta_class) ], format => \&authentication::kind2name }, + { label => N("Authentication"), val => \$kind, type => 'list' , list => [ authentication::kinds($in->do_pkgs, $meta_class) ], format => \&authentication::kind2name }, ]) or $in->exit; authentication::ask_parameters($in, $netc, $authentication, $kind) or goto main; |