From b4fa1b4ba123a6a8f2895a7317c54173bbf5782a Mon Sep 17 00:00:00 2001 From: damien Date: Sat, 16 Mar 2002 11:56:54 +0000 Subject: we now consider dhcp provide GATEWAY and internet connection. --- perl-install/network/ethernet.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 0591df8d8..fc8a0c975 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -61,8 +61,10 @@ sub configure_lan { $::isInstall and $in->set_help('configureNetworkIP'); configureNetwork($netc, $intf, $first_time) or return; configureNetwork2($in, $prefix, $netc, $intf); + my $hasdhcp = 0; + foreach (keys(%$intf)) { $intf->{$_}{BOOTPROTO} eq "dhcp" and $hasdhcp = 1} $netc->{NETWORKING} = "yes"; - if ($netc->{GATEWAY}) { + if ($netc->{GATEWAY} || $hasdhcp) { $netcnx->{type}='lan'; $netcnx->{NET_DEVICE} = $netc->{NET_DEVICE} = ''; $netcnx->{NET_INTERFACE} = 'lan'; #$netc->{NET_INTERFACE}; -- cgit v1.2.1