From 49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Mon, 18 Feb 2002 15:55:57 +0000 Subject: (mount_options_unpack): add usrquota and grpquota for ext2/ext3/reiserfs/xfs --- perl-install/fs.pm | 2 ++ 1 file changed, 2 insertions(+) (limited to 'perl-install') 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; -- cgit v1.2.1