From c6ef10bb0b4734cefbe3cf0eb337ada066b1602a Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Thu, 13 May 2010 17:09:00 +0000 Subject: default to defaultFS in LVM, not ext2 --- perl-install/NEWS | 1 + perl-install/install/NEWS | 1 + perl-install/lvm.pm | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) (limited to 'perl-install') diff --git a/perl-install/NEWS b/perl-install/NEWS index e156ac2cf..c178ad9f6 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,6 +1,7 @@ - enable acl by default on ext3/4 fs - enable user_xattr on home for ext2 too - allow setting acl option in diskdrake +- default to defaultFS in LVM, not ext2 Version 13.25 - 11 May 2010 diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b6071ce3b..1441b02be 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,6 +1,7 @@ - enable acl by default on ext3/4 fs - enable user_xattr on home for ext2 too - allow setting acl option in diskdrake +- default to defaultFS in LVM, not ext2 Version 13.24 - 9 May 2010 diff --git a/perl-install/lvm.pm b/perl-install/lvm.pm index 15fbe554a..86c679f70 100644 --- a/perl-install/lvm.pm +++ b/perl-install/lvm.pm @@ -121,7 +121,7 @@ sub get_lvs { if (my $type = -e "/dev/$device" && fs::type::type_subpart_from_magic($part)) { put_in_hash($part, $type); } else { - $part->{fs_type} = 'ext2'; + $part->{fs_type} = defaultFS(); } $part; } @l -- cgit v1.2.1