diff options
author | Rémy Clouard (shikamaru) <shikamaru@mageia.org> | 2011-03-26 13:53:14 +0000 |
---|---|---|
committer | Rémy Clouard (shikamaru) <shikamaru@mageia.org> | 2011-03-26 13:53:14 +0000 |
commit | 3ac7c58f7a68387b13dec13900f84d3fdd660e53 (patch) | |
tree | 73f408e0d17e40c7d01459c22199aa874d70459c /perl-install/fsedit.pm | |
parent | 072bfac2f160c78b9348818d12c2c9d63276fe09 (diff) | |
download | drakx-3ac7c58f7a68387b13dec13900f84d3fdd660e53.tar drakx-3ac7c58f7a68387b13dec13900f84d3fdd660e53.tar.gz drakx-3ac7c58f7a68387b13dec13900f84d3fdd660e53.tar.bz2 drakx-3ac7c58f7a68387b13dec13900f84d3fdd660e53.tar.xz drakx-3ac7c58f7a68387b13dec13900f84d3fdd660e53.zip |
fix #188, allow lvm on top of luks
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 2db6f92d0..dc6cf2284 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -294,6 +294,8 @@ Do you agree to lose all the partitions? # must be done after getting major/minor $all_hds->{dmcrypts} = [ dmcrypts($all_hds) ]; + # allow lvm on dmcrypt + $all_hds->{lvms} = [ lvms($all_hds) ]; $_->{faked_device} = 0 foreach fs::get::fstab($all_hds); |