Changeset 1155 for trunk/packages/sipb-xen-www/code/cache_acls.py
- Timestamp:
- Oct 20, 2008, 1:55:53 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/packages/sipb-xen-www/code/cache_acls.py
r1095 r1155 7 7 8 8 def expandLocker(name): 9 groups = getafsgroups.getLockerAcl(name) 9 try: 10 groups = getafsgroups.getLockerAcl(name) 11 except getafsgroups.AfsProcessError, e: 12 if e.message.startswith("fs: You don't have the required access rights on"): 13 groups = [] 14 raise 10 15 cell = getafsgroups.getCell(name) 11 16 ans = set()
Note: See TracChangeset
for help on using the changeset viewer.