diff options
-rwxr-xr-x | perl-install/standalone/service_harddrake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/service_harddrake b/perl-install/standalone/service_harddrake index cb1d68295..f87bb0722 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -59,7 +59,7 @@ foreach (@harddrake::data::tree) { foreach my $device (@ID{@added}) { push @configurator_pool, harddrake::data::set_removable_configurator($Ident, $device); }; - foreach my $device (@{$oldconfig}{@was_removed}) { + foreach my $device (@$oldconfig{@was_removed}) { push @configurator_pool, harddrake::data::set_removable_remover($Ident, $device); } } else { |