diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-09-14 11:28:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-09-14 11:28:45 +0000 |
commit | c5d5913bbb76ea2fc2d17d579b1815cf01e24221 (patch) | |
tree | 96662142f62dec437ac2a958ed7624b845d68d20 /perl-install/fsedit.pm | |
parent | 4d99ad95c82264377918c4738cf2c055361bbcda (diff) | |
download | drakx-c5d5913bbb76ea2fc2d17d579b1815cf01e24221.tar drakx-c5d5913bbb76ea2fc2d17d579b1815cf01e24221.tar.gz drakx-c5d5913bbb76ea2fc2d17d579b1815cf01e24221.tar.bz2 drakx-c5d5913bbb76ea2fc2d17d579b1815cf01e24221.tar.xz drakx-c5d5913bbb76ea2fc2d17d579b1815cf01e24221.zip |
new option "nodmraid" do ensure we don't use dmraid
(useful since dmraid can be unused by the user but still half working as far as dmraid knows)
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index eea89eba5..1df2f39c2 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -128,7 +128,7 @@ sub get_hds { my @drives = detect_devices::hds(); #- replace drives used in dmraid by the merged name - handle_dmraid(\@drives); + handle_dmraid(\@drives) if !$flags->{nodmraid}; foreach my $hd (@drives) { $hd->{file} = devices::make($hd->{device}); |