From 31e05c086ad2f8799e7885364b65606c9f4bffb2 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Tue, 15 Dec 2009 18:58:44 +0000 Subject: installation mount points: reset unknown partitions types to default fs (ext4) instead of hardcoded ext3 --- perl-install/fs/mount_point.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'perl-install/fs') diff --git a/perl-install/fs/mount_point.pm b/perl-install/fs/mount_point.pm index dc1da482c..e1a09d934 100644 --- a/perl-install/fs/mount_point.pm +++ b/perl-install/fs/mount_point.pm @@ -80,8 +80,8 @@ sub validate_mount_points { $m{$m} and die N("Duplicate mount point %s", $m); $m{$m} = 1; - #- in case the type does not correspond, force it to ext3 - fs::type::set_fs_type($_, 'ext3') if !isTrueFS($_) && !isOtherAvailableFS($_); + #- in case the type does not correspond, force it to default fs (ext4 currently) + fs::type::set_fs_type($_, defaultFS()) if !isTrueFS($_) && !isOtherAvailableFS($_); } 1; } -- cgit v1.2.1