diff options
author | Olivier Blin <oblin@mandriva.org> | 2005-06-03 09:57:56 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2005-06-03 09:57:56 +0000 |
commit | b0e91070fdb56f216fbf4d1c699bb78df8141544 (patch) | |
tree | 407b8c950a85a43444f357c566434b3b903cb16b /perl-install/install_steps.pm | |
parent | ebd1653d15280a41ac7f6c90e38ee21170e5ade9 (diff) | |
download | drakx-b0e91070fdb56f216fbf4d1c699bb78df8141544.tar drakx-b0e91070fdb56f216fbf4d1c699bb78df8141544.tar.gz drakx-b0e91070fdb56f216fbf4d1c699bb78df8141544.tar.bz2 drakx-b0e91070fdb56f216fbf4d1c699bb78df8141544.tar.xz drakx-b0e91070fdb56f216fbf4d1c699bb78df8141544.zip |
$o->{net}{type} is already defined in more appropriate places
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r-- | perl-install/install_steps.pm | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm index bbe1343ba..8c067be4e 100644 --- a/perl-install/install_steps.pm +++ b/perl-install/install_steps.pm @@ -639,10 +639,6 @@ sub configureNetwork { my ($o) = @_; require network::network; network::network::configure_network($o->{net}, $o, $o->{modules_conf}); - if ($o->{method} =~ /ftp|http|nfs/) { - $o->{net}{type} = 'lan'; - } - configure_firewall($o) if !$o->{isUpgrade}; } |