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/NEWS | 3 +++ perl-install/fs/mount_point.pm | 4 ++-- perl-install/install/NEWS | 3 +++ 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index 3de8eff55..73caabd5f 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,6 @@ +- installation mount points: reset unknown partitions types to default + fs (ext4) instead of hardcoded ext3 + Version 13.2 - 14 December 2009 - fix creating devices 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; } diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 3e2094f92..aa8c729a0 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- mount points: reset unknown partitions types to default + fs (ext4) instead of hardcoded ext3 + Version 13.2 - 14 December 2009 - fix creating devices -- cgit v1.2.1