diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2002-08-20 17:22:45 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2002-08-20 17:22:45 +0000 |
commit | 76cba373cce1bab319df7402f242d9d57d9ad166 (patch) | |
tree | 59462694aa50f3238ec43dea44b1920083037bf9 /perl-install/standalone/service_harddrake | |
parent | 250ef385d4f7a7825b7490c42681d6b9a809432b (diff) | |
download | drakx-76cba373cce1bab319df7402f242d9d57d9ad166.tar drakx-76cba373cce1bab319df7402f242d9d57d9ad166.tar.gz drakx-76cba373cce1bab319df7402f242d9d57d9ad166.tar.bz2 drakx-76cba373cce1bab319df7402f242d9d57d9ad166.tar.xz drakx-76cba373cce1bab319df7402f242d9d57d9ad166.zip |
- use draksound wizard
- boot: only check for removed/added disks, video card, ethernet
devices and mouse
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 e0957938d..347c7cd60 100755 --- a/perl-install/standalone/service_harddrake +++ b/perl-install/standalone/service_harddrake @@ -31,8 +31,8 @@ my (%config, $in); # For each hw, class, detect device, compare and offer to reconfigure if # needed foreach (@harddrake::data::tree) { - my ($Ident, $item, undef, $configurator, $detector) = @$_; - + my ($Ident, $item, undef, $configurator, $detector, $do_it) = @$_; + next unless $do_it; # No detector ? (should never happen but who know ?) ref($detector) eq 'CODE' or next; |