summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2002-09-19 10:00:47 +0000
committerFrancois Pons <fpons@mandriva.com>2002-09-19 10:00:47 +0000
commitedaa0da34e4feadcab13ccaeb2dc57ad2620d4f2 (patch)
tree31e088e724c5963d521c569529989366cf2fdb34
parent0046411d6dcae1c225c774469d0ff92823403e4c (diff)
downloaddrakx-backup-do-not-use-edaa0da34e4feadcab13ccaeb2dc57ad2620d4f2.tar
drakx-backup-do-not-use-edaa0da34e4feadcab13ccaeb2dc57ad2620d4f2.tar.gz
drakx-backup-do-not-use-edaa0da34e4feadcab13ccaeb2dc57ad2620d4f2.tar.bz2
drakx-backup-do-not-use-edaa0da34e4feadcab13ccaeb2dc57ad2620d4f2.tar.xz
drakx-backup-do-not-use-edaa0da34e4feadcab13ccaeb2dc57ad2620d4f2.zip
avoid proposing ntfs partition to be formatted.
-rw-r--r--perl-install/install_steps_interactive.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/install_steps_interactive.pm b/perl-install/install_steps_interactive.pm
index 68efd61f3..d49d40729 100644
--- a/perl-install/install_steps_interactive.pm
+++ b/perl-install/install_steps_interactive.pm
@@ -414,7 +414,7 @@ sub choosePartitionsToFormat {
my @l = grep { !$_->{isMounted} && $_->{mntpoint} &&
(!isSwap($_) || $::expert) &&
- (!isFat($_) || $_->{notFormatted} || $::expert) &&
+ (!isFat($_) && !isNT($_) || $_->{notFormatted} || $::expert) &&
(!isOtherAvailableFS($_) || $::expert || $_->{toFormat})
} @$fstab;
$_->{toFormat} = 1 foreach grep { isSwap($_) && !$::expert } @$fstab;