summaryrefslogtreecommitdiffstats
path: root/perl-install/standalone
diff options
context:
space:
mode:
authorThierry Vignaud <tvignaud@mandriva.org>2002-08-20 17:22:45 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2002-08-20 17:22:45 +0000
commit76cba373cce1bab319df7402f242d9d57d9ad166 (patch)
tree59462694aa50f3238ec43dea44b1920083037bf9 /perl-install/standalone
parent250ef385d4f7a7825b7490c42681d6b9a809432b (diff)
downloaddrakx-backup-do-not-use-76cba373cce1bab319df7402f242d9d57d9ad166.tar
drakx-backup-do-not-use-76cba373cce1bab319df7402f242d9d57d9ad166.tar.gz
drakx-backup-do-not-use-76cba373cce1bab319df7402f242d9d57d9ad166.tar.bz2
drakx-backup-do-not-use-76cba373cce1bab319df7402f242d9d57d9ad166.tar.xz
drakx-backup-do-not-use-76cba373cce1bab319df7402f242d9d57d9ad166.zip
- use draksound wizard
- boot: only check for removed/added disks, video card, ethernet devices and mouse
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-xperl-install/standalone/service_harddrake4
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;