From f9ed643497904ff85d21828064d9fea115deeb0e Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 19 Sep 2002 12:26:14 +0000 Subject: - do not set type to ext2 when the type is ntfs - set to ext3 instead of ext2 --- perl-install/install_steps.pm | 4 ++-- 1 file 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; } -- cgit v1.2.1