diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2005-01-28 09:31:40 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2005-01-28 09:31:40 +0000 |
commit | f2929b6fd89ca52a12b18d154d3a5b44c40c4e9a (patch) | |
tree | 8d7102d9f54979cac607061c14488e31d199dc1e /perl-install/fsedit.pm | |
parent | 3ffa6ec498bb676e891027e56a9122aef1d6b02e (diff) | |
download | drakx-f2929b6fd89ca52a12b18d154d3a5b44c40c4e9a.tar drakx-f2929b6fd89ca52a12b18d154d3a5b44c40c4e9a.tar.gz drakx-f2929b6fd89ca52a12b18d154d3a5b44c40c4e9a.tar.bz2 drakx-f2929b6fd89ca52a12b18d154d3a5b44c40c4e9a.tar.xz drakx-f2929b6fd89ca52a12b18d154d3a5b44c40c4e9a.zip |
- create fs::type::directories_needed_to_boot() and use it
- for removable drives used for / /usr and the like, ensure we check it at boot time
(bugzilla #13283)
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 b9c63ba3e..e2bf8d955 100644 --- a/perl-install/fsedit.pm +++ b/perl-install/fsedit.pm @@ -416,7 +416,7 @@ Please be sure to add a /boot partition") if $mntpoint eq "/" && isLVM($part) && die N("You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount point\n") if !isTrueLocalFS($part) && $mntpoint eq '/'; die N("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)); + if !isTrueFS($part) && member($mntpoint, fs::type::directories_needed_to_boot()); die N("You can not use an encrypted file system for mount point %s", $mntpoint) if $part->{options} =~ /encrypted/ && member($mntpoint, qw(/ /usr /var /boot)); |