summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
authorPascal Terjan <pterjan@mandriva.org>2009-02-10 13:35:12 +0000
committerPascal Terjan <pterjan@mandriva.org>2009-02-10 13:35:12 +0000
commit5218380a70f9e6e3c40be9705baeb72a95087597 (patch)
treea3b6d4f58f49d838817afc4d5d6a86d7242cce20 /perl-install
parentc097f8d3f8db70685b3c7df6d6035ad47d50d9a0 (diff)
downloaddrakx-backup-do-not-use-5218380a70f9e6e3c40be9705baeb72a95087597.tar
drakx-backup-do-not-use-5218380a70f9e6e3c40be9705baeb72a95087597.tar.gz
drakx-backup-do-not-use-5218380a70f9e6e3c40be9705baeb72a95087597.tar.bz2
drakx-backup-do-not-use-5218380a70f9e6e3c40be9705baeb72a95087597.tar.xz
drakx-backup-do-not-use-5218380a70f9e6e3c40be9705baeb72a95087597.zip
don't set useless extents option for ext4 mounts
Diffstat (limited to 'perl-install')
-rw-r--r--perl-install/NEWS1
-rw-r--r--perl-install/fs/mount_options.pm1
2 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/NEWS b/perl-install/NEWS
index 5c638af04..cf190d1b7 100644
--- a/perl-install/NEWS
+++ b/perl-install/NEWS
@@ -1,6 +1,7 @@
- diskdrake:
o forget the changed label when the user cancels
o fix preserving UUID when formatting ext* and swap, and handle more FS (#39913)
+ o don't set useless extents option for ext4 mounts
- localedrake:
o set scim-thai as default IM for Thai
- drakboot:
diff --git a/perl-install/fs/mount_options.pm b/perl-install/fs/mount_options.pm
index 4a502f12f..f8336b70c 100644
--- a/perl-install/fs/mount_options.pm
+++ b/perl-install/fs/mount_options.pm
@@ -32,7 +32,6 @@ sub unpack {
nfs => [ qw(rsize=8192 wsize=8192) ],
cifs => [ qw(username= password=) ],
davfs2 => [ qw(username= password= uid= gid=) ],
- ext4 => [ qw(extents) ],
reiserfs => [ 'notail' ],
);
push @{$per_fs{$_}}, 'usrquota', 'grpquota' foreach 'ext2', 'ext3', 'ext4', 'xfs';