diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-17 10:45:32 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2015-05-17 11:09:01 +0200 |
commit | 6349a8e06dfa20179788d98e6247c02782f7d230 (patch) | |
tree | 815e6d7422c19be5326746cf5a3a8fefd3c06817 /perl-install/fsedit.pm | |
parent | bfafcb7d9cc39562870f95db7960ee5c7685fc15 (diff) | |
download | drakx-6349a8e06dfa20179788d98e6247c02782f7d230.tar drakx-6349a8e06dfa20179788d98e6247c02782f7d230.tar.gz drakx-6349a8e06dfa20179788d98e6247c02782f7d230.tar.bz2 drakx-6349a8e06dfa20179788d98e6247c02782f7d230.tar.xz drakx-6349a8e06dfa20179788d98e6247c02782f7d230.zip |
log which mount has not a true fs (mga#15962)
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 1367f0fd4..4b56338ed 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -488,7 +488,7 @@ You should create a separate /boot partition first") if $mntpoint eq "/" && isLV if member($mntpoint, qw(/bin /dev /etc /lib /sbin /mnt /media)); die N("You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount point\n") if !isTrueLocalFS($part) && $mntpoint eq '/'; - die N("You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount point\n") + die N("You need a true filesystem (ext2/3/4, reiserfs, xfs, or jfs) for this mount point\n") . $mntpoint if !isTrueFS($part) && member($mntpoint, '/home', fs::type::directories_needed_to_boot()); die N("You cannot use an encrypted filesystem for mount point %s", $mntpoint) if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var /boot)); |