From efc82b81e54d081bd9230e8f423eb15ba35a6dab Mon Sep 17 00:00:00 2001 From: Francois Pons Date: Thu, 6 Mar 2003 21:18:07 +0000 Subject: avoid virtual ethX to be reconfigured by drakconnect --- perl-install/drakxtools.spec | 2 ++ perl-install/network/ethernet.pm | 12 +++++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/perl-install/drakxtools.spec b/perl-install/drakxtools.spec index d8f0aaf48..351308b73 100644 --- a/perl-install/drakxtools.spec +++ b/perl-install/drakxtools.spec @@ -291,6 +291,8 @@ file /etc/sysconfig/harddrake2/previous_hw | fgrep -q perl && %_datadir/harddrak %config(noreplace) %_sysconfdir/logrotate.d/drakxtools-http %changelog +- avoid virtual ethX to be reconfigured by drakconnect (francois) + * Thu Mar 6 2003 Thierry Vignaud 9.1-17mdk - draksplash: o fix #1766 diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 9dc6d9b1c..6d2a5b48a 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -148,7 +148,7 @@ sub conf_network_card_backend { $netc->{NET_DEVICE} = $interface; #- one consider that there is only ONE Internet connection device.. - @{$intf->{$interface}}{qw(DEVICE BOOTPROTO NETMASK NETWORK ONBOOT)} = ($interface, $type, '255.255.255.0', $netadr, 'yes'); + @{$intf->{$interface}}{qw(DEVICE BOOTPROTO NETMASK NETWORK ONBOOT)} = ($interface, $type, '255.255.255.0', $netadr, 'yes'); $intf->{$interface}{IPADDR} = $ipadr if $ipadr; $interface; @@ -166,20 +166,18 @@ sub configureNetwork { my ($netc, $intf, $_first_time) = @_; local $_; modules::interactive::load_category($in, 'network/main|gigabit|usb|pcmcia', !$::expert, 1) or return; - my @l = detect_devices::getNet() or die \N("no network card found"); my @all_cards = conf_network_card_backend($netc, $intf); + my @l = map { $_->[0] } @all_cards; configureNetwork_step_1: - my $n_card = 0; $netc ||= {}; - my $last; foreach (@l) { - my $intf2 = findIntf($intf ||= {}, $_); + my $last; foreach (@all_cards) { + my $intf2 = findIntf($intf ||= {}, $_->[0]); add2hash($intf2, $last); add2hash($intf2, { NETMASK => '255.255.255.0' }); - configureNetworkIntf($netc, $in, $intf2, $netc->{NET_DEVICE}, 0, $all_cards[$n_card][1]) or return; + configureNetworkIntf($netc, $in, $intf2, $netc->{NET_DEVICE}, 0, $_->[1]) or return; $last = $intf2; - $n_card++; } $last or return; -- cgit v1.2.1