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/fs.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/fs.pm')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index 38d55ac89..8cdead039 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -308,7 +308,7 @@ sub prepare_write_fstab { my ($freq, $passno) = exists $_->{freq} ? ($_->{freq}, $_->{passno}) : - isTrueLocalFS($_) && $_->{options} !~ /encryption=/ && !$_->{is_removable} ? + isTrueLocalFS($_) && $_->{options} !~ /encryption=/ && (!$_->{is_removable} || member($_->{mntpoint}, fs::type::directories_needed_to_boot())) ? (1, $_->{mntpoint} eq '/' ? 1 : loopback::carryRootLoopback($_) ? 0 : 2) : (0, 0); |