summaryrefslogtreecommitdiffstats
path: root/perl-install/install_interactive.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/install_interactive.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/install_interactive.pm')
-rw-r--r--perl-install/install_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_interactive.pm b/perl-install/install_interactive.pm
index 69018db24..186397e37 100644
--- a/perl-install/install_interactive.pm
+++ b/perl-install/install_interactive.pm
@@ -100,7 +100,7 @@ sub partitionWizardSolutions {
"no harddrive on which partitions can be added");
}
- if (my @truefs = grep { isTrueFS($_) } @$fstab) {
+ if (my @truefs = grep { isTrueLocalFS($_) } @$fstab) {
#- value twice the ext2 partitions
$solutions{existing_part} = [ 6 + @truefs + @$fstab, N("Use existing partitions"), sub { $o->ask_mntpoint_s($fstab) } ]
} else {