diff options
author | Pascal Terjan <pterjan@mandriva.org> | 2009-04-14 16:24:03 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mandriva.org> | 2009-04-14 16:24:03 +0000 |
commit | 5510055af8bca3dac0df8490b0337fab5af43e84 (patch) | |
tree | 12efd749b6fb2fc4979fe2d9116e6baed7ead2ec /perl-install/raid.pm | |
parent | 790c029f058ac1f565ddd5fffeed9c042ef2e142 (diff) | |
download | drakx-5510055af8bca3dac0df8490b0337fab5af43e84.tar drakx-5510055af8bca3dac0df8490b0337fab5af43e84.tar.gz drakx-5510055af8bca3dac0df8490b0337fab5af43e84.tar.bz2 drakx-5510055af8bca3dac0df8490b0337fab5af43e84.tar.xz drakx-5510055af8bca3dac0df8490b0337fab5af43e84.zip |
handle md devices not called md\d+, like md_d127
Diffstat (limited to 'perl-install/raid.pm')
-rw-r--r-- | perl-install/raid.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/raid.pm b/perl-install/raid.pm index 79476e956..5252511a0 100644 --- a/perl-install/raid.pm +++ b/perl-install/raid.pm @@ -165,10 +165,10 @@ sub inactivate_and_dirty { } sub active_mds() { - map { if_(/^(md\d+)\s*:\s*active/, $1) } cat_("/proc/mdstat"); + map { if_(/^(md\S+)\s*:\s*active/, $1) } cat_("/proc/mdstat"); } sub inactive_mds() { - map { if_(/^(md\d+)\s*:\s*inactive/, $1) } cat_("/proc/mdstat"); + map { if_(/^(md\S+)\s*:\s*inactive/, $1) } cat_("/proc/mdstat"); } sub free_mds { |