diff options
Diffstat (limited to 'perl-install/standalone/service_harddrake')
-rwxr-xr-x | perl-install/standalone/service_harddrake | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index 294f07074..dab1428a0 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -142,10 +142,10 @@ foreach my $hw_class (@harddrake::data::tree) { my @configurator_pool; if (harddrake::data::is_auto_configurable_class($Ident)) { foreach my $device (@ID{@added}) { - push @configurator_pool, harddrake::data::set_media_auto_configurator($Ident, $device); + push @configurator_pool, harddrake::data::set_media_auto_configurator($device); } foreach my $device (@$oldconfig{@was_removed}) { - push @configurator_pool, harddrake::data::set_media_remover($Ident, $device); + push @configurator_pool, harddrake::data::set_media_remover($device); } } else { @configurator_pool = $configurator; |