summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/install/NEWS1
-rw-r--r--perl-install/lvm.pm2
3 files changed, 3 insertions, 1 deletions
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