For all 2.6 kernels presence of quota support in kernel can be detected by
checking /proc/sys/fs/quota. This is actually more reliable than trying to
mount a filesystem with quota options (for example because SCRATCH_DEV does
not have to contain a filesystem type we are going to test).
Signed-off-by: Jan Kara <jack@suse.cz>
_require_quota()
{
[ -x /usr/bin/quota ] || _notrun "Quota user tools not installed"
- _scratch_mount "-o usrquota,grpquota"
- ret=$?
- umount $SCRATCH_MNT
- [ $ret -ne 0 ] && _notrun "Installed kernel does not support quota"
+ if [ $FSTYP = "xfs" ]; then
+ [ -f /proc/fs/xfs/xqmstat ] || _notrun "Installed kernel does not support XFS quota"
+ elif [ $FSTYP != "gfs2" ]; then
+ [ -d /proc/sys/fs/quota ] || _notrun "Installed kernel does not support quota"
+ fi
}
#