summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/fs.pm')
-rw-r--r--perl-install/fs.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm
index 2f850c466..9e7cee59b 100644
--- a/perl-install/fs.pm
+++ b/perl-install/fs.pm
@@ -241,6 +241,8 @@ sub mount_options_unpack {
smbfs => [ qw(username= password=) ],
reiserfs => [ 'notail' ],
);
+ push @{$per_fs{$_}}, 'usrquota', 'grpquota' foreach 'ext2', 'ext3', 'reiserfs', 'xfs';
+
while (my ($fs, $l) = each %per_fs) {
isThisFs($fs, $part) || $part->{type} eq 'auto' && member($fs, @auto_fs) or next;
$non_defaults->{$_} = 1 foreach @$l;