summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2010-05-13 17:09:00 +0000
committerPascal Terjan <pterjan@mandriva.org>2010-05-13 17:09:00 +0000
commitc6ef10bb0b4734cefbe3cf0eb337ada066b1602a (patch)
treef27aad3d0a2dfa8833867643d23c6ae25b4f982c /perl-install
parent2f0d4c87e7f442d0f41d1412d835d1e05cb7c05f (diff)
downloaddrakx-c6ef10bb0b4734cefbe3cf0eb337ada066b1602a.tar
drakx-c6ef10bb0b4734cefbe3cf0eb337ada066b1602a.tar.gz
drakx-c6ef10bb0b4734cefbe3cf0eb337ada066b1602a.tar.bz2
drakx-c6ef10bb0b4734cefbe3cf0eb337ada066b1602a.tar.xz
drakx-c6ef10bb0b4734cefbe3cf0eb337ada066b1602a.zip
default to defaultFS in LVM, not ext2
Diffstat (limited to 'perl-install')
-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