diff options
Diffstat (limited to 'perl-install/install2.pm')
-rw-r--r-- | perl-install/install2.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 151bdc569..95f4b925f 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -256,10 +256,11 @@ sub configureNetwork { #- get current configuration of network device. require network::network; eval { network::network::read_net_conf($o->{net}) }; + require network::ethernet; + modules::load_category($o->{modules_conf}, list_modules::ethernet_categories()); if (!$o->{isUpgrade}) { installStepsCall($o, $auto, 'configureNetwork'); } else { - require network::ethernet; network::ethernet::configure_eth_aliases($o->{modules_conf}); } } |