summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps.pm
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2004-03-04 09:01:17 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2004-03-04 09:01:17 +0000
commitc01ca42031a3bd4abd2133af7731a5f73af28047 (patch)
treef30fc5206bfe475893ef4bbc9ea9801a6c383055 /perl-install/install_steps.pm
parent838f30a2f2097f16b34ac216bcf839b8fe4c8c24 (diff)
downloaddrakx-c01ca42031a3bd4abd2133af7731a5f73af28047.tar
drakx-c01ca42031a3bd4abd2133af7731a5f73af28047.tar.gz
drakx-c01ca42031a3bd4abd2133af7731a5f73af28047.tar.bz2
drakx-c01ca42031a3bd4abd2133af7731a5f73af28047.tar.xz
drakx-c01ca42031a3bd4abd2133af7731a5f73af28047.zip
(hasNetwork) do not refuse to up the network when in dhcp (bad oem patch)
Diffstat (limited to 'perl-install/install_steps.pm')
-rw-r--r--perl-install/install_steps.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 592d4073d..c5db0b272 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -972,7 +972,7 @@ risk!
#------------------------------------------------------------------------------
sub hasNetwork {
my ($o) = @_;
- $o->{netcnx}{type} && $o->{netc}{NETWORKING} ne 'no' && $o->{netc}{DHCP} ne 'yes' and return 1;
+ $o->{netcnx}{type} && $o->{netc}{NETWORKING} ne 'no' and return 1;
log::l("no network seems to be configured for internet ($o->{netcnx}{type},$o->{netc}{NETWORKING})");
0;
}