summaryrefslogtreecommitdiffstats
path: root/rescue
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-04-18 17:09:07 +0000
committerThierry Vignaud <tv@mageia.org>2012-04-18 17:09:07 +0000
commit7c4bc213c34b51a181a560226ed43efd1db0767d (patch)
treeab9baa0f8fdf8d5b283db1ff39e4b9adb92b52b2 /rescue
parent875c6e220315aaffb834cb2f88277030c81bb777 (diff)
downloaddrakx-backup-do-not-use-7c4bc213c34b51a181a560226ed43efd1db0767d.tar
drakx-backup-do-not-use-7c4bc213c34b51a181a560226ed43efd1db0767d.tar.gz
drakx-backup-do-not-use-7c4bc213c34b51a181a560226ed43efd1db0767d.tar.bz2
drakx-backup-do-not-use-7c4bc213c34b51a181a560226ed43efd1db0767d.tar.xz
drakx-backup-do-not-use-7c4bc213c34b51a181a560226ed43efd1db0767d.zip
fix detecting RAID (mga#5048)
Diffstat (limited to 'rescue')
-rw-r--r--rescue/NEWS1
-rwxr-xr-xrescue/guessmounts2
2 files changed, 2 insertions, 1 deletions
diff --git a/rescue/NEWS b/rescue/NEWS
index 08b5c36a1..3e6613e4b 100644
--- a/rescue/NEWS
+++ b/rescue/NEWS
@@ -1,3 +1,4 @@
+- fix detecting RAID (mga#5048)
- include more udev rules for RAID (mga#5048)
Version 1.36 - 8 April 2012, by Pascal Terjan
diff --git a/rescue/guessmounts b/rescue/guessmounts
index 78a5c613d..e3ef66b94 100755
--- a/rescue/guessmounts
+++ b/rescue/guessmounts
@@ -49,7 +49,7 @@ my ($raid_parts, $normal_parts) = partition { isRawRAID($_) } @parts;
if (@$raid_parts) {
require raid;
- raid::detect_during_install_once(@$raid_parts);
+ raid::detect_during_install(@$raid_parts);
my $raids = raid::get_existing(@$raid_parts);
push @$normal_parts, @$raids;
}