summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-03-02 08:08:04 +0000
committerThierry Vignaud <tv@mageia.org>2012-03-02 08:08:04 +0000
commit74ffcd18ea54829c08ffd63b6294c331f4903219 (patch)
treee088e8b822c053ffd8d5b4398f0f6bd372767d10
parent19f32fd78ac44c88240dfc0c8f9e9acbfdb0d104 (diff)
downloaddrakx-74ffcd18ea54829c08ffd63b6294c331f4903219.tar
drakx-74ffcd18ea54829c08ffd63b6294c331f4903219.tar.gz
drakx-74ffcd18ea54829c08ffd63b6294c331f4903219.tar.bz2
drakx-74ffcd18ea54829c08ffd63b6294c331f4903219.tar.xz
drakx-74ffcd18ea54829c08ffd63b6294c331f4903219.zip
(default_packages) install mdadm for fake RAID too (mga#4750)
-rw-r--r--perl-install/install/NEWS2
-rw-r--r--perl-install/install/any.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS
index 931c9edde..51f073687 100644
--- a/perl-install/install/NEWS
+++ b/perl-install/install/NEWS
@@ -1,3 +1,5 @@
+- install mdadm for fake RAID too (mga#4750)
+
Version 13.87 - 01 March 2012
- include more udev rules for RAID (mga#4750)
diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm
index 85ee15ee8..06ab0f503 100644
--- a/perl-install/install/any.pm
+++ b/perl-install/install/any.pm
@@ -551,7 +551,7 @@ sub default_packages {
add_n_log("have RAID", "mdadm") if !is_empty_array_ref($o->{all_hds}{raids});
add_n_log("have LVM", "lvm2") if !is_empty_array_ref($o->{all_hds}{lvms});
add_n_log("have crypted DM", "cryptsetup") if !is_empty_array_ref($o->{all_hds}{dmcrypts});
- add_n_log("some disks are fake RAID", "dmraid") if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}};
+ add_n_log("some disks are fake RAID", qw(mdadm dmraid)) if any { fs::type::is_dmraid($_) } @{$o->{all_hds}{hds}};
add_n_log("CPU needs microcode", "microcode_ctl") if detect_devices::hasCPUMicrocode();
add_n_log("CPU needs cpufreq", 'cpufreq') if detect_devices::hasCPUFreq();
add_n_log("APM support needed", 'apmd') if -e "/proc/apm";