From d23be7ab76f618fdcaeb92b0563e90eb9e8cbd45 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 4 Dec 2003 16:49:51 +0000 Subject: (configureNetwork) configureNetworkNet() wrongly put WIRELESS_NWID=HASH(0x8e93758) in ifcfg- because we give it the last configured network card intead of the interfaces list however, for a few weeks, it now checks if some interfaces are dynamic before offering to configure zeroconf, hence there was a bug since we only checked if *last* interfaces wasn't static which would results in wrong configuration if some interface were dynamics but the last one was static --- perl-install/network/ethernet.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index bcda4a64b..83c19f15d 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -185,7 +185,7 @@ want to use the default host name."), } ) or goto configureNetwork_step_1; } else { - configureNetworkNet($in, $netc, $last ||= {}, @l) or goto configureNetwork_step_1; + configureNetworkNet($in, $netc, $intf, @l) or goto configureNetwork_step_1; } network::network::miscellaneous_choose($in, $::o->{miscellaneous} ||= {}) or goto configureNetwork_step_2; 1; -- cgit v1.2.1