diff options
Diffstat (limited to 'perl-install/install_steps_interactive.pm')
-rw-r--r-- | perl-install/install_steps_interactive.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm index 8e8b7a16d..d4290307f 100644 --- a/perl-install/install_steps_interactive.pm +++ b/perl-install/install_steps_interactive.pm @@ -789,7 +789,8 @@ sub updateModulesFromFloppy { sub configureNetwork { my ($o) = @_; require network::network; - modules::load_category($o->{modules_conf}, 'network/*'); + require network::ethernet; + modules::load_category($o->{modules_conf}, network::ethernet::get_eth_categories()); network::network::easy_dhcp($o->{modules_conf}, $o->{netc}, $o->{intf}) and $o->{netcnx}{type} = 'lan'; $o->SUPER::configureNetwork; } |