From 748e6a2debd25a02a8987b73d2431756cd738f6a Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Wed, 4 May 2005 03:32:05 +0000 Subject: remove useless warning in install, we never override configuration (#10827) --- perl-install/network/netconnect.pm | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/perl-install/network/netconnect.pm b/perl-install/network/netconnect.pm index 3d910deee..bf06faf2b 100644 --- a/perl-install/network/netconnect.pm +++ b/perl-install/network/netconnect.pm @@ -1022,23 +1022,10 @@ You can find a driver on http://eciadsl.flashtux.org/"), return $ndiswrapper_next_step->(); } $ethntf = $intf->{$ntf_name} ||= { DEVICE => $ntf_name }; - $::isInstall && $netc->{NET_DEVICE} eq $ethntf->{DEVICE} ? 'lan_alrd_cfg' : 'lan_protocol'; + 'lan_protocol'; }, }, - lan_alrd_cfg => - { - name => N("WARNING: this device has been previously configured to connect to the Internet. -Modifying the fields below will override this configuration. -Do you really want to reconfigure this device?"), - type => "yesorno", - default => "no", - post => sub { - my ($res) = @_; - return $res ? "lan_protocol" : "alrd_end"; - } - }, - alrd_end => { -- cgit v1.2.1