From 5f176f0b8fb2aadd3be5b51fa8fd2d05362507ea Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 7 Sep 2004 05:04:03 +0000 Subject: pppoa shouldn't be selected by default for ethernet devices, fallback on pppoe --- perl-install/network/netconnect.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 90aec99fe..2bcda0049 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -749,6 +749,8 @@ and copy the mgmt.o in /usr/share/speedtouch", 'http://prdownloads.sourceforge.n if (!exists $adsl_devices{$ntf_name}) { $ethntf = $intf->{$ntf_name} ||= { DEVICE => $ntf_name }; $adsl_type = $ethntf->{BOOTPROTO} || "dhcp"; + #- pppoa shouldn't be selected by default for ethernet devices, fallback on pppoe + $adsl_type = "pppoe" if $adsl_type = "pppoa"; } }, name => N("Connect to the Internet") . "\n\n" . -- cgit v1.2.1