diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-09-14 07:35:07 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-09-14 07:35:07 +0000 |
commit | a1a03584ae73aece691aef507a43e1cffa668119 (patch) | |
tree | 8f8a8aada36c6129984f455608d3c881908590ae /perl-install/standalone | |
parent | 87aae67e25fa2a19590f7e1ae35f0b299c47840c (diff) | |
download | drakx-a1a03584ae73aece691aef507a43e1cffa668119.tar drakx-a1a03584ae73aece691aef507a43e1cffa668119.tar.gz drakx-a1a03584ae73aece691aef507a43e1cffa668119.tar.bz2 drakx-a1a03584ae73aece691aef507a43e1cffa668119.tar.xz drakx-a1a03584ae73aece691aef507a43e1cffa668119.zip |
(configureNetwork2) configure eth aliases, needs modules_conf
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/drakconnect | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/drakconnect b/perl-install/standalone/drakconnect index 0d73366bd..0181251ea 100755 --- a/perl-install/standalone/drakconnect +++ b/perl-install/standalone/drakconnect @@ -751,7 +751,7 @@ sub apply { my $lintf = $intf; $dyn and $lintf->{$_} = undef foreach qw(NETMASK NETWORK IPADDR); network::network::sethostname($netc) if $dyn; - network::network::configureNetwork2($in, '', $netc, { $lintf->{DEVICE} => $lintf }); + network::network::configureNetwork2($in, $modules_conf, '', $netc, { $lintf->{DEVICE} => $lintf }); } sub ethisup { `LC_ALL=C LANGUAGE=C /sbin/ifconfig $_[0]` =~ /inet/ } @@ -1027,7 +1027,7 @@ Run the \"Add Connection\" assistant from the Mandrakelinux Control Center")); update(); $button_apply->set_sensitive(1); } else { - configureNetwork2($in, '', $netc, $intf); + configureNetwork2($in, $modules_conf, '', $netc, $intf); write_resolv_conf("/etc/resolv.conf", $netc); } $exit_dialogsub->(); |