diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-10-13 02:54:46 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-10-13 02:54:46 +0000 |
commit | 6cc57924776dd164351f363ba48f4c453792ba62 (patch) | |
tree | dc3df9eaba366920f64d828f1259c2e38ecdbca9 /perl-install | |
parent | 5eeaf88af1719ee62e94f6e7ea385d1cf2d6612b (diff) | |
download | drakx-backup-do-not-use-6cc57924776dd164351f363ba48f4c453792ba62.tar drakx-backup-do-not-use-6cc57924776dd164351f363ba48f4c453792ba62.tar.gz drakx-backup-do-not-use-6cc57924776dd164351f363ba48f4c453792ba62.tar.bz2 drakx-backup-do-not-use-6cc57924776dd164351f363ba48f4c453792ba62.tar.xz drakx-backup-do-not-use-6cc57924776dd164351f363ba48f4c453792ba62.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 f50ff2632..21257ac19 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -1252,7 +1252,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}); |