summaryrefslogtreecommitdiffstats
path: root/perl-install/fs/type.pm
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2010-04-21 16:25:24 +0000
committerPascal Terjan <pterjan@mandriva.org>2010-04-21 16:25:24 +0000
commitc5db0bde74fc91561ce2449a6da5be5a3211227b (patch)
tree09d850a88314ca2f674c1426365fdd7189cb0ba3 /perl-install/fs/type.pm
parent25efa73c66538205781c5536ce1153216f8f9c51 (diff)
downloaddrakx-backup-do-not-use-c5db0bde74fc91561ce2449a6da5be5a3211227b.tar
drakx-backup-do-not-use-c5db0bde74fc91561ce2449a6da5be5a3211227b.tar.gz
drakx-backup-do-not-use-c5db0bde74fc91561ce2449a6da5be5a3211227b.tar.bz2
drakx-backup-do-not-use-c5db0bde74fc91561ce2449a6da5be5a3211227b.tar.xz
drakx-backup-do-not-use-c5db0bde74fc91561ce2449a6da5be5a3211227b.zip
First step of diskdrake crypto update
o offer encryption in a more visible way when creating a partition o remove cryptoloop from diskdrake interface and transparently use dm-crypt o support having dm-crypt partition with non default FS
Diffstat (limited to 'perl-install/fs/type.pm')
-rw-r--r--perl-install/fs/type.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/type.pm b/perl-install/fs/type.pm
index e49ac3ed4..b32da7891 100644
--- a/perl-install/fs/type.pm
+++ b/perl-install/fs/type.pm
@@ -185,7 +185,7 @@ if_(arch() !~ /ppc/,
sub type_names {
my ($expert, $o_hd) = @_;
my @l = @{$type_names{important}};
- push @l, @{$type_names{non_fs_type}};
+ push @l, grep { $_ ne 'Encrypted' } @{$type_names{non_fs_type}};
push @l, sort @{$type_names{other}} if $expert;
if ($o_hd && !$o_hd->use_pt_type) {
warn "$_ => $type_name2fs_type{$_}\n" foreach @l;