diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-06-30 05:50:15 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-06-30 05:50:15 +0000 |
commit | b3f45caccc1a607be4789f8686341263ac097531 (patch) | |
tree | e83ee8611c78ad122619c45609f089c7717e655e /perl-install/fs | |
parent | a2a777c1e7982368c7592c2d5bc635210fd59ade (diff) | |
download | drakx-b3f45caccc1a607be4789f8686341263ac097531.tar drakx-b3f45caccc1a607be4789f8686341263ac097531.tar.gz drakx-b3f45caccc1a607be4789f8686341263ac097531.tar.bz2 drakx-b3f45caccc1a607be4789f8686341263ac097531.tar.xz drakx-b3f45caccc1a607be4789f8686341263ac097531.zip |
adapt to fs/dmraid.pm change (bus is now dmraid_xxx instead of dm_xxx)
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/proc_partitions.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/proc_partitions.pm b/perl-install/fs/proc_partitions.pm index 1d40840f5..90cd2fa7b 100644 --- a/perl-install/fs/proc_partitions.pm +++ b/perl-install/fs/proc_partitions.pm @@ -59,7 +59,7 @@ sub read { sub compare { my ($hd) = @_; - $hd->{bus} =~ /^dm_/ and log::l("skipping /proc/partititions check for dmraid $hd->{device}"), return; + $hd->{bus} =~ /^dmraid_/ and log::l("skipping /proc/partititions check for dmraid $hd->{device}"), return; my @l1 = partition_table::get_normal_parts($hd); my @l2 = grep { $_->{rootDevice} eq $hd->{device} } &read([$hd]); |