diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-01-02 17:26:33 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-01-02 17:26:33 +0000 |
commit | ec404987f040875d9665c95275772c89ea9d8585 (patch) | |
tree | 3b467ca9e33528b52c14317e7e4f56d4542a09b4 /perl-install/standalone | |
parent | 824850333813009052d33952960b6fd386279007 (diff) | |
download | drakx-ec404987f040875d9665c95275772c89ea9d8585.tar drakx-ec404987f040875d9665c95275772c89ea9d8585.tar.gz drakx-ec404987f040875d9665c95275772c89ea9d8585.tar.bz2 drakx-ec404987f040875d9665c95275772c89ea9d8585.tar.xz drakx-ec404987f040875d9665c95275772c89ea9d8585.zip |
rename is_auto_configurable_media as is_auto_configurable_class since it just compares class names
Diffstat (limited to 'perl-install/standalone')
-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 fe50b7902..294f07074 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -140,7 +140,7 @@ foreach my $hw_class (@harddrake::data::tree) { next if $Ident eq 'MOUSE' && $curr_kernel ne $previous_kernel_config{KERNEL} && $cfg{"DETECT_$Ident"} ne 'force'; my @configurator_pool; - if (harddrake::data::is_auto_configurable_media($Ident)) { + if (harddrake::data::is_auto_configurable_class($Ident)) { foreach my $device (@ID{@added}) { push @configurator_pool, harddrake::data::set_media_auto_configurator($Ident, $device); } |