diff options
-rwxr-xr-x | perl-install/standalone/service_harddrake | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index f59c3c668..87427a14a 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -66,6 +66,11 @@ foreach (@harddrake::data::tree) { } else { @configurator_pool = $configurator; } + if ($Ident eq "AUDIO") { + # automatic sound slots configuration + harddrake::sound::configure_sound_slots(); + } + next unless -x first(split /\s+/, $configurator_pool[0]); foreach my $configurator (@configurator_pool) { my ($pid, $no); @@ -94,7 +99,5 @@ foreach (@harddrake::data::tree) { log::explanations("created file $last_boot_config"); Storable::store(\%config, $last_boot_config); -# automatic sound slots configuration -harddrake::sound::configure_sound_slots(); $in->exit(0) if $in; |