diff options
-rwxr-xr-x | perl-install/standalone/service_harddrake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index 87427a14a..f4b100458 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -69,6 +69,12 @@ foreach (@harddrake::data::tree) { if ($Ident eq "AUDIO") { # automatic sound slots configuration harddrake::sound::configure_sound_slots(); + } elsif ($Ident eq "ETHERNET") { + modules::remove_alias_regexp('^(wlan|eth)[0-9]*$'); + modules::load_category('network/main|gigabit|usb'); + require network::ethernet; + network::ethernet::configure_eth_aliases(); + modules::write_conf(); } next unless -x first(split /\s+/, $configurator_pool[0]); |