Drop 113 from auto group until AIO issue resolved, add missed quota test update.

Merge of master-melb:xfs-cmds:22100a by kenmcd.
This commit is contained in:
Nathan Scott
2005-04-08 03:51:40 +00:00
parent a175e44297
commit 2619dd6036
3 changed files with 29 additions and 1 deletions
+27
View File
@@ -125,6 +125,33 @@ _qmount()
[ -x /usr/sbin/quot ] && quot $SCRATCH_MNT >>$seq.full 2>&1
}
_qsetup()
{
# setup exactly what it is we'll be testing
enforce=1
if src/feature -u $SCRATCH_DEV
then
type=u ; eval `_choose_uid`; ln -s $seq.usrquota $seq.out
elif src/feature -g $SCRATCH_DEV
then
type=g ; eval `_choose_gid`; ln -s $seq.grpquota $seq.out
elif src/feature -U $SCRATCH_DEV
then
type=u ; eval `_choose_uid`; ln -s $seq.uqnoenforce $seq.out
enforce=0
elif src/feature -G $SCRATCH_DEV
then
type=g ; eval `_choose_gid`; ln -s $seq.gqnoenforce $seq.out
enforce=0
else
_notrun "No quota support at mount time"
fi
echo "Using output from '" `ls -l $seq.out` "'" >>$seq.full
echo "and using type=$type id=$id" >>$seq.full
}
#-----------------------------------------------------------------------------------
#
# wrappers for Linux/IRIX differences