diff options
-rw-r--r-- | perl-install/install_steps.pm | 4 |
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; } |