Changeset 1155 for trunk/packages/sipb-xen-www/code/getafsgroups.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/getafsgroups.py
r1154 r1155 49 49 50 50 def getLockerAcl(locker): 51 try: 52 p = subprocess.Popen(["fs", "listacl", getLockerPath(locker)], 53 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 54 if p.wait(): 55 raise AfsProcessError(p.stderr.read()) 56 except AfsProcessError, e: 57 if e.message.startswith("fs: You don't have the required access rights on"): 58 return [] 59 raise 51 p = subprocess.Popen(["fs", "listacl", getLockerPath(locker)], 52 stdout=subprocess.PIPE, stderr=subprocess.PIPE) 53 if p.wait(): 54 raise AfsProcessError(p.stderr.read()) 60 55 lines = p.stdout.readlines() 61 56 values = []
Note: See TracChangeset
for help on using the changeset viewer.