diff options
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 5eb5e153c..55efecddd 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -462,7 +462,7 @@ Please be sure to add a separate /boot partition"); } if ($mntpoint eq "/boot" && (isLUKS($part) || isRawLUKS($part))) { - die N("You cannot use an encrypted file system for mount point %s", "/boot"); + die N("You cannot use an encrypted filesystem for mount point %s", "/boot"); } #- NB: if the LV doesn't exist, lv_nb_pvs returns 0 @@ -480,7 +480,7 @@ You should create a separate /boot partition first") if $mntpoint eq "/" && isLV if !isTrueLocalFS($part) && $mntpoint eq '/'; die N("You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount point\n") if !isTrueFS($part) && member($mntpoint, '/home', fs::type::directories_needed_to_boot()); - die N("You cannot use an encrypted file system for mount point %s", $mntpoint) + die N("You cannot use an encrypted filesystem for mount point %s", $mntpoint) if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var /boot)); local $part->{mntpoint} = $mntpoint; |