[451] in Moira
User quotas
daemon@ATHENA.MIT.EDU (Richard Basch)
Mon Sep 7 23:22:00 1992
Date: Mon, 7 Sep 92 23:21:20 -0400
To: bugs@MIT.EDU, bug-moira@Athena.MIT.EDU, dbadmin@Athena.MIT.EDU,
From: "Richard Basch" <basch@MIT.EDU>
The user "jenshen" appeared to have a quota of 1k on her account.
This is the second user who has had this problem. According to the
logs, there do not appear to be any errors during the "afs_quota"
command.
I have now checked for all volumes with 1k quotas on rosemary, cumin,
fennel, and thyme:
506% perl /tmp/a.pl rosemary cumin fennel thyme
user.jenshen 1
507% cat /tmp/a.pl
while ($_ = shift) {
open (VOS, "vos listvol $_ -long -no|");
while ($_ = <VOS>) {
($volume,$a,$a) = split(/\s+/, $_) if (/On-line/);
if ($a eq "RW" && /MaxQuota/) {
($a,$a,$quota) = split(/\s+/, $_);
print "$volume\t$quota\n" if ($quota == 1);
}
}
close(VOS);
}
I do not expect to find any of these 1k quotas on any of the other
servers, since the new allocations are going to prefer the 4 listed
above.
If any more of these 1k volumes appear, please inform me immediately...
I am trying to understand how this error is occuring.
-R