summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-09-19 12:26:14 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-09-19 12:26:14 +0000
commitf9ed643497904ff85d21828064d9fea115deeb0e (patch)
tree5c532fb2c6721a381c117057dd5aa846d1e9cb60
parent265c39221f89ffaf22b4d58d7dfe04a09871695a (diff)
downloaddrakx-backup-do-not-use-f9ed643497904ff85d21828064d9fea115deeb0e.tar
drakx-backup-do-not-use-f9ed643497904ff85d21828064d9fea115deeb0e.tar.gz
drakx-backup-do-not-use-f9ed643497904ff85d21828064d9fea115deeb0e.tar.bz2
drakx-backup-do-not-use-f9ed643497904ff85d21828064d9fea115deeb0e.tar.xz
drakx-backup-do-not-use-f9ed643497904ff85d21828064d9fea115deeb0e.zip
- do not set type to ext2 when the type is ntfs
- set to ext3 instead of ext2
-rw-r--r--perl-install/install_steps.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install_steps.pm b/perl-install/install_steps.pm
index 4ae4c9848..dd3ad5cda 100644
--- a/perl-install/install_steps.pm
+++ b/perl-install/install_steps.pm
@@ -211,8 +211,8 @@ sub ask_mntpoint_s {
$m{$m} and die _("Duplicate mount point %s", $m);
$m{$m} = 1;
- #- in case the type does not correspond, force it to ext2
- $_->{type} = 0x83 if $m =~ m|^/| && !isFat($_) && !isTrueFS($_);
+ #- in case the type does not correspond, force it to ext3
+ $_->{type} = 0x483 if $m =~ m|^/| && !isTrueFS($_) && !isOtherAvailableFS($_);
}
1;
}