Ignore:
Timestamp:
Oct 20, 2008, 1:55:53 PM (16 years ago)
Author:
broder
Message:

Revert r1154 and instead apply the patch in cache_acls so that an error is
still thrown when the ACL is looked up as part of the website code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/sipb-xen-www/code/getafsgroups.py

    r1154 r1155  
    4949
    5050def 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())
    6055    lines = p.stdout.readlines()
    6156    values = []
Note: See TracChangeset for help on using the changeset viewer.