X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/02f7620ec6f9bc23661a0cb7cd4ffa0030f2feea..d7764c68cddf71645439f295c31532e528231051:/code/cache_acls.py diff --git a/code/cache_acls.py b/code/cache_acls.py index fa9b9f9..1a23587 100644 --- a/code/cache_acls.py +++ b/code/cache_acls.py @@ -6,7 +6,12 @@ import getafsgroups import subprocess def expandLocker(name): - groups = getafsgroups.getLockerAcl(name) + try: + groups = getafsgroups.getLockerAcl(name) + except getafsgroups.AfsProcessError, e: + if e.message.startswith("fs: You don't have the required access rights on"): + groups = [] + raise cell = getafsgroups.getCell(name) ans = set() for group in groups: