summaryrefslogtreecommitdiffstats
path: root/perl-install
diff options
context:
space:
mode:
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';