diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-10-13 02:55:21 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-10-13 02:55:21 +0000 |
commit | 19afd5251bfbd6eed2c44dd21b3066f637025f9a (patch) | |
tree | 6c76565916a880bb01e32412019eaf30916476a6 /perl-install | |
parent | b3399c33ba0fb7312be16b564ed566a15b08d786 (diff) | |
download | drakx-19afd5251bfbd6eed2c44dd21b3066f637025f9a.tar drakx-19afd5251bfbd6eed2c44dd21b3066f637025f9a.tar.gz drakx-19afd5251bfbd6eed2c44dd21b3066f637025f9a.tar.bz2 drakx-19afd5251bfbd6eed2c44dd21b3066f637025f9a.tar.xz drakx-19afd5251bfbd6eed2c44dd21b3066f637025f9a.zip |
don't ask the security level in firewire meta_class
Diffstat (limited to 'perl-install')
-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 7c15be613..91a8ac894 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1286,7 +1286,7 @@ try to force installation even if that destroys the first partition?")); sub miscellaneous { my ($o, $_clicked) = @_; - if ($o->{meta_class} ne 'desktop' && !$o->{isUpgrade}) { + if ($o->{meta_class} ne 'desktop' && $o->{meta_class} ne 'firewall' && !$o->{isUpgrade}) { require security::level; security::level::level_choose($o, \$o->{security}, \$o->{libsafe}, \$o->{security_user}); |