From af2245eab3095f4db9fa92d97fbd37e1495b7d99 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sun, 15 Sep 2002 19:39:43 +0000 Subject: do not allow encrypted filesystem for /boot --- perl-install/fsedit.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- cgit v1.2.1