diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-05-27 11:26:16 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-05-27 11:26:16 +0000 |
commit | 252041321d4ac8753e3083c71590291154dbe66e (patch) | |
tree | b0c76318d995cac86b9df90aeaf557e7852d3989 /perl-install/fs.pm | |
parent | ec461fcdcda4fe7459a726f02112ff0a33c2d68f (diff) | |
download | drakx-252041321d4ac8753e3083c71590291154dbe66e.tar drakx-252041321d4ac8753e3083c71590291154dbe66e.tar.gz drakx-252041321d4ac8753e3083c71590291154dbe66e.tar.bz2 drakx-252041321d4ac8753e3083c71590291154dbe66e.tar.xz drakx-252041321d4ac8753e3083c71590291154dbe66e.zip |
new function isTrueLocalFS() to make a distinction between ext3/reiserfs/... and nfs
=> allow /home on nfs (bugzilla #7460)
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 ce31f1afc..c3efd2127 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -230,7 +230,7 @@ sub prepare_write_fstab { my ($freq, $passno) = exists $_->{freq} ? ($_->{freq}, $_->{passno}) : - isTrueFS($_) && $_->{options} !~ /encryption=/ && !$_->{is_removable} ? + isTrueLocalFS($_) && $_->{options} !~ /encryption=/ && !$_->{is_removable} ? (1, $_->{mntpoint} eq '/' ? 1 : loopback::carryRootLoopback($_) ? 0 : 2) : (0, 0); |