From 59fec0908e16d047ed48c93793cd47fbda0d43e8 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 22 Jan 2004 17:53:47 +0000 Subject: when configuring an ethernet card, skip the protocol choice step for any cnx type different than lan (eg: for cable and adsl connections) --- perl-install/network/netconnect.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index edad4330e..359ed8c01 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -640,7 +640,7 @@ You can find a driver on http://eciadsl.flashtux.org/"), delete $ethntf->{$_} foreach keys %$ethntf; add2hash($ethntf, $intf->{$ntf_name}); $net_device = $netc->{NET_DEVICE}; - return "lan_intf" if $type eq 'cable'; + return "lan_intf" if $type ne 'lan'; $::isInstall && $net_device eq $ethntf->{DEVICE} ? 'lan_alrd_cfg' : 'lan_protocol'; }, }, -- cgit v1.2.1