From 252041321d4ac8753e3083c71590291154dbe66e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 27 May 2004 11:26:16 +0000 Subject: new function isTrueLocalFS() to make a distinction between ext3/reiserfs/... and nfs => allow /home on nfs (bugzilla #7460) --- perl-install/install_interactive.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/install_interactive.pm') 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 { -- cgit v1.2.1