diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-08-10 03:33:18 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-08-10 03:33:18 +0000 |
commit | dcb3b6eabc053872de55120133300a107506b82c (patch) | |
tree | 4680730ce7d9ad9ddd90c761379370a30cba5d93 /perl-install | |
parent | f1b239a95402398b493fbda637c97c9997561ee7 (diff) | |
download | drakx-dcb3b6eabc053872de55120133300a107506b82c.tar drakx-dcb3b6eabc053872de55120133300a107506b82c.tar.gz drakx-dcb3b6eabc053872de55120133300a107506b82c.tar.bz2 drakx-dcb3b6eabc053872de55120133300a107506b82c.tar.xz drakx-dcb3b6eabc053872de55120133300a107506b82c.zip |
i don't know if it's really the best choice here, but that way it always allow to select "encrypted"
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs/mount_options.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm index 383490bb6..a7a0e7688 100644 --- a/perl-install/fs/mount_options.pm +++ b/perl-install/fs/mount_options.pm @@ -40,7 +40,7 @@ sub unpack { $non_defaults->{$_} = 1 foreach @$l; } - $non_defaults->{encrypted} = 1 if !$part->{isFormatted} || isSwap($part); + $non_defaults->{encrypted} = 1; $non_defaults->{supermount} = 1 if $part->{fs_type} =~ /:/ || member($part->{fs_type}, 'auto', @auto_fs); |