diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-07-06 10:07:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-07-06 10:07:16 +0000 |
commit | 1b1cd598699675752d01b161433dfe65b11e2eae (patch) | |
tree | fafa9896138221228ceb723775fde2e9a991ac6d /perl-install/partition_table.pm | |
parent | 591209495676d2ece3bd593f8ecd8ecaea8cb9c2 (diff) | |
download | drakx-1b1cd598699675752d01b161433dfe65b11e2eae.tar drakx-1b1cd598699675752d01b161433dfe65b11e2eae.tar.gz drakx-1b1cd598699675752d01b161433dfe65b11e2eae.tar.bz2 drakx-1b1cd598699675752d01b161433dfe65b11e2eae.tar.xz drakx-1b1cd598699675752d01b161433dfe65b11e2eae.zip |
Allows people having PVs on unpartitioned disks to install
(but no way to create such beasts)
Diffstat (limited to 'perl-install/partition_table.pm')
-rw-r--r-- | perl-install/partition_table.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/partition_table.pm b/perl-install/partition_table.pm index c0446ee66..d89269b93 100644 --- a/perl-install/partition_table.pm +++ b/perl-install/partition_table.pm @@ -455,7 +455,7 @@ sub read_one($$) { if_(arch() =~ /^ia64/, 'gpt'), arch() =~ /^sparc/ ? ('sun', 'bsd') : ('dos', 'bsd', 'sun', 'mac'), ); - foreach ('empty', @parttype, 'unknown') { + foreach ('empty', @parttype, 'lvm_PV', 'unknown') { /unknown/ and die "unknown partition table format on disk " . $hd->{file}; eval { require("partition_table_$_.pm"); |