summaryrefslogtreecommitdiffstats
path: root/perl-install/install_steps_interactive.pm
diff options
context:
space:
mode:
authorOlivier Blin <oblin@mandriva.org>2004-09-14 12:05:37 +0000
committerOlivier Blin <oblin@mandriva.org>2004-09-14 12:05:37 +0000
commit36258b99b4dcb4b0eca60c18fff4cca8f4e19348 (patch)
treeb4936e29b057cbbd25faa58ff07e773a2561a5ba /perl-install/install_steps_interactive.pm
parentb214d3dafd658e10523443c93578d62263a0f3c4 (diff)
downloaddrakx-36258b99b4dcb4b0eca60c18fff4cca8f4e19348.tar
drakx-36258b99b4dcb4b0eca60c18fff4cca8f4e19348.tar.gz
drakx-36258b99b4dcb4b0eca60c18fff4cca8f4e19348.tar.bz2
drakx-36258b99b4dcb4b0eca60c18fff4cca8f4e19348.tar.xz
drakx-36258b99b4dcb4b0eca60c18fff4cca8f4e19348.zip
(configureNetwork) load all network modules before network
auto-configuration, so that all interfaces will be available and written in iftab
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r--perl-install/install_steps_interactive.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 5491ea84d..b7ac7847c 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -789,6 +789,7 @@ sub updateModulesFromFloppy {
sub configureNetwork {
my ($o) = @_;
require network::network;
+ modules::load_category($o->{modules_conf}, 'network/*');
network::network::easy_dhcp($o->{modules_conf}, $o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan';
$o->SUPER::configureNetwork;
}