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/install_interactive.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/install_interactive.pm')
-rw-r--r-- | perl-install/install_interactive.pm | 2 |
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 { |