summaryrefslogtreecommitdiffstats
path: root/perl-install/fs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2002-02-18 15:55:57 +0000
committerPascal Rigaux <pixel@mandriva.com>2002-02-18 15:55:57 +0000
commit49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f (patch)
treeb055c93a90ee90d067bd83965ab1205a4d2cf9ba /perl-install/fs.pm
parente0d64fdf2b5e6e16b6037a85dfc1cb38f4848336 (diff)
downloaddrakx-backup-do-not-use-49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f.tar
drakx-backup-do-not-use-49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f.tar.gz
drakx-backup-do-not-use-49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f.tar.bz2
drakx-backup-do-not-use-49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f.tar.xz
drakx-backup-do-not-use-49dbd3e2da04a37df60b2b3b5f13a2a6d64e1e7f.zip
(mount_options_unpack): add usrquota and grpquota for ext2/ext3/reiserfs/xfs
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;