diff options
-rw-r--r-- | perl-install/install2.pm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/install2.pm b/perl-install/install2.pm index 7159beef3..259dc1e3b 100644 --- a/perl-install/install2.pm +++ b/perl-install/install2.pm @@ -255,7 +255,12 @@ sub configureNetwork { #- get current configuration of network device. require network::network; eval { network::network::read_net_conf($o->{net}) }; - installStepsCall($o, $auto, 'configureNetwork') if !$o->{isUpgrade}; + if (!$o->{isUpgrade}) { + installStepsCall($o, $auto, 'configureNetwork'); + } else { + require network::ethernet; + network::ethernet::configure_eth_aliases($o->{modules_conf}); + } } #------------------------------------------------------------------------------ sub installUpdates { |