diff options
author | Pascal Terjan <pterjan@gmail.com> | 2014-08-27 21:11:05 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@gmail.com> | 2014-10-20 21:29:55 +0000 |
commit | 9c28f1e61a447052bdccb3364174745ac7cafa29 (patch) | |
tree | faa24a5830f19990cd2e83adf7783fbe8ca756c2 /perl-install/fsedit.pm | |
parent | 84066dbe06d81129709ac743a739cc59aaea12f7 (diff) | |
download | drakx-9c28f1e61a447052bdccb3364174745ac7cafa29.tar drakx-9c28f1e61a447052bdccb3364174745ac7cafa29.tar.gz drakx-9c28f1e61a447052bdccb3364174745ac7cafa29.tar.bz2 drakx-9c28f1e61a447052bdccb3364174745ac7cafa29.tar.xz drakx-9c28f1e61a447052bdccb3364174745ac7cafa29.zip |
Allow /boot on btrfs
Diffstat (limited to 'perl-install/fsedit.pm')
-rw-r--r-- | perl-install/fsedit.pm | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/perl-install/fsedit.pm b/perl-install/fsedit.pm index 8f5d600b6..47cb1c051 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -479,8 +479,6 @@ You should create a separate /boot partition first") if $mntpoint eq "/" && isLV 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") - if $part->{fs_type} eq 'btrfs' && $mntpoint eq '/boot'; - 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 filesystem for mount point %s", $mntpoint) if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var /boot)); |