diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 10:11:26 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2007-08-08 10:11:26 +0000 |
commit | 27379879c56c139b61dd3312001b7aab4e8388de (patch) | |
tree | 4a65e4f6e02343a00e73c7b2dd1a6365cc05119a /perl-install/fs | |
parent | dc07e001a001266d00a1dedece8a5cecc7f1eee6 (diff) | |
download | drakx-27379879c56c139b61dd3312001b7aab4e8388de.tar drakx-27379879c56c139b61dd3312001b7aab4e8388de.tar.gz drakx-27379879c56c139b61dd3312001b7aab4e8388de.tar.bz2 drakx-27379879c56c139b61dd3312001b7aab4e8388de.tar.xz drakx-27379879c56c139b61dd3312001b7aab4e8388de.zip |
- allow using diskdrake even if there is only a lvm PV on full disk available
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/partitioning_wizard.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/partitioning_wizard.pm b/perl-install/fs/partitioning_wizard.pm index 4aff222c7..8e1404494 100644 --- a/perl-install/fs/partitioning_wizard.pm +++ b/perl-install/fs/partitioning_wizard.pm @@ -217,7 +217,7 @@ filesystem checks will be run on your next boot into Microsoft Windows®")) if $ } ]; } - if (@hds_rw) { + if (@hds_rw || find { $_->isa('partition_table::lvm') } @$hds) { $solutions{diskdrake} = [ 0, N("Custom disk partitioning"), sub { partition_with_diskdrake($in, $all_hds, $all_fstab, $manual_fstab, $partitions, $partitioning_flags, $skip_mtab); } ]; |