X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/a7122dfd5b00810ef7917835d5a81d457f1b3054..b22b86d9a31ed73886db8b4862ff543c7507c6ce:/code/getafsgroups.py?ds=inline diff --git a/code/getafsgroups.py b/code/getafsgroups.py index a35a4f1..4e4b383 100644 --- a/code/getafsgroups.py +++ b/code/getafsgroups.py @@ -32,6 +32,8 @@ def getAfsGroupMembers(group, cell): stdout=subprocess.PIPE, stderr=subprocess.PIPE) err = p.stderr.read() if err: #Error code doesn't reveal missing groups, but stderr does + if err.startswith('pts: Permission denied ; unable to get membership of '): + return [] raise AfsProcessError(err) return [line.strip() for line in p.stdout.readlines()[1:]]