diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-03-07 20:01:25 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-03-07 20:01:25 +0000 |
commit | e02f41bf1e4470f85e22674bd1a0de93dc010e8f (patch) | |
tree | 8b34dafb4c4a2b6b5022799a3914d5f2efe33954 /perl-install | |
parent | 3d6823129e0d9af4862d2ca06f2a708680f69f1e (diff) | |
download | drakx-e02f41bf1e4470f85e22674bd1a0de93dc010e8f.tar drakx-e02f41bf1e4470f85e22674bd1a0de93dc010e8f.tar.gz drakx-e02f41bf1e4470f85e22674bd1a0de93dc010e8f.tar.bz2 drakx-e02f41bf1e4470f85e22674bd1a0de93dc010e8f.tar.xz drakx-e02f41bf1e4470f85e22674bd1a0de93dc010e8f.zip |
removing quota choices for reiserfs
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/fs.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs.pm b/perl-install/fs.pm index abaf08cff..7b27dce6e 100644 --- a/perl-install/fs.pm +++ b/perl-install/fs.pm @@ -249,7 +249,7 @@ sub mount_options_unpack { smbfs => [ qw(username= password=) ], reiserfs => [ 'notail' ], ); - push @{$per_fs{$_}}, 'usrquota', 'grpquota' foreach 'ext2', 'ext3', 'reiserfs', 'xfs'; + push @{$per_fs{$_}}, 'usrquota', 'grpquota' foreach 'ext2', 'ext3', 'xfs'; while (my ($fs, $l) = each %per_fs) { isThisFs($fs, $part) || $part->{type} eq 'auto' && member($fs, @auto_fs) or next; |