diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-09-15 19:39:43 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-09-15 19:39:43 +0000 |
commit | af2245eab3095f4db9fa92d97fbd37e1495b7d99 (patch) | |
tree | b756088a5c3f46aded9213b52f3af81309650803 /perl-install/fsedit.pm | |
parent | f0c617f2b019720c2c158760e92e2c72c7054ca8 (diff) | |
download | drakx-af2245eab3095f4db9fa92d97fbd37e1495b7d99.tar drakx-af2245eab3095f4db9fa92d97fbd37e1495b7d99.tar.gz drakx-af2245eab3095f4db9fa92d97fbd37e1495b7d99.tar.bz2 drakx-af2245eab3095f4db9fa92d97fbd37e1495b7d99.tar.xz drakx-af2245eab3095f4db9fa92d97fbd37e1495b7d99.zip |
do not allow encrypted filesystem for /boot
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 6efcffd0c..4c2c43316 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -530,7 +530,7 @@ sub check_mntpoint { die _("You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, qw(/ /home /tmp /usr /var)); die _("You can't use an encrypted file system for mount point %s", $mntpoint) - if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var)); + if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var /boot)); local $part->{mntpoint} = $mntpoint; loopback::check_circular_mounts($hd, $part, $all_hds); |