projects
/
invirt/packages/invirt-web.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
List all machines in admin mode, even if you can't do anything
[invirt/packages/invirt-web.git]
/
code
/
cache_acls.py
diff --git
a/code/cache_acls.py
b/code/cache_acls.py
index
fa9b9f9
..
1a23587
100644
(file)
--- a/
code/cache_acls.py
+++ b/
code/cache_acls.py
@@
-6,7
+6,12
@@
import getafsgroups
import subprocess
def expandLocker(name):
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:
cell = getafsgroups.getCell(name)
ans = set()
for group in groups: