X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-web.git/blobdiff_plain/0829a92050bada078fa6efb21a86c71c7390015d..ecdb33ab57f8072f39826c28f936f0c04f9d82a4:/code/getafsgroups.py?ds=sidebyside diff --git a/code/getafsgroups.py b/code/getafsgroups.py index 4e4b383..d8ba297 100644 --- a/code/getafsgroups.py +++ b/code/getafsgroups.py @@ -28,6 +28,7 @@ class AfsProcessError(Exception): pass def getAfsGroupMembers(group, cell): + subprocess.check_call(['aklog', cell], stdout=subprocess.PIPE, stderr=subprocess.PIPE) p = subprocess.Popen(["pts", "membership", "-encrypt", group, '-c', cell], stdout=subprocess.PIPE, stderr=subprocess.PIPE) err = p.stderr.read()