summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2004-05-27 11:26:16 +0000
committerPascal Rigaux <pixel@mandriva.com>2004-05-27 11:26:16 +0000
commit252041321d4ac8753e3083c71590291154dbe66e (patch)
treeb0c76318d995cac86b9df90aeaf557e7852d3989 /perl-install/fs.pm
parentec461fcdcda4fe7459a726f02112ff0a33c2d68f (diff)
downloaddrakx-backup-do-not-use-252041321d4ac8753e3083c71590291154dbe66e.tar
drakx-backup-do-not-use-252041321d4ac8753e3083c71590291154dbe66e.tar.gz
drakx-backup-do-not-use-252041321d4ac8753e3083c71590291154dbe66e.tar.bz2
drakx-backup-do-not-use-252041321d4ac8753e3083c71590291154dbe66e.tar.xz
drakx-backup-do-not-use-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.pm2
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);