diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-10-05 06:28:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-10-05 06:28:50 +0000 |
commit | 8b7b7815cc0e0df9b727671d6f10bd7db1d618fc (patch) | |
tree | e27447dcbea5ef37f582211daa238b942d9e9fd7 | |
parent | 36ef4899713968734b532f10890e5e0d2f42e28d (diff) | |
download | drakx-8b7b7815cc0e0df9b727671d6f10bd7db1d618fc.tar drakx-8b7b7815cc0e0df9b727671d6f10bd7db1d618fc.tar.gz drakx-8b7b7815cc0e0df9b727671d6f10bd7db1d618fc.tar.bz2 drakx-8b7b7815cc0e0df9b727671d6f10bd7db1d618fc.tar.xz drakx-8b7b7815cc0e0df9b727671d6f10bd7db1d618fc.zip |
don't warnAboutNaughtyServers if meta_class is firewall
-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 d4290307f..c48b969c7 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -472,7 +472,7 @@ sub choosePackages { $o->choosePackagesTree($packages) or goto chooseGroups if $individual; install_any::warnAboutRemovedPackages($o, $o->{packages}); - install_any::warnAboutNaughtyServers($o) or goto chooseGroups if !$o->{isUpgrade}; + install_any::warnAboutNaughtyServers($o) or goto chooseGroups if !$o->{isUpgrade} && $o->{meta_class} ne 'firewall'; } sub choosePackagesTree { |