diff options
-rw-r--r-- | perl-install/network/ethernet.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/network/ethernet.pm b/perl-install/network/ethernet.pm index 0601c1c21..581606c16 100644 --- a/perl-install/network/ethernet.pm +++ b/perl-install/network/ethernet.pm @@ -104,7 +104,7 @@ sub update_iftab() { # automatic net aliases configuration sub configure_eth_aliases { my ($modules_conf) = @_; - foreach my $card (get_eth_cards()) { + foreach my $card (get_eth_cards($modules_conf)) { $modules_conf->remove_alias($card->[1]); $modules_conf->set_alias($card->[0], $card->[1]); } |