Changeset 2591 for package_branches


Ignore:
Timestamp:
Dec 7, 2009, 10:05:27 PM (14 years ago)
Author:
broder
Message:

Update the cherrypy branch to use authz.afs.cells instead of just
authz.cells, to stay in sync with r2590.

(Again, this isn't really a cherry-pick, but whatever)

Location:
package_branches/invirt-web/cherrypy
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • package_branches/invirt-web/cherrypy/code/cache_acls.py

    r2558 r2591  
    4040        return []
    4141    try:
    42         return getafsgroups.getAfsGroupMembers(name, config.authz.cells[0].cell)
     42        return getafsgroups.getAfsGroupMembers(name, config.authz.afs.cells[0].cell)
    4343    except getafsgroups.AfsProcessError:
    4444        return []
  • package_branches/invirt-web/cherrypy/code/getafsgroups.py

    r2558 r2591  
    3131def getAfsGroupMembers(group, cell):
    3232    encrypt = True
    33     for c in config.authz.cells:
     33    for c in config.authz.afs.cells:
    3434        if c.cell == cell and hasattr(c, 'auth'):
    3535            encrypt = c.auth
  • package_branches/invirt-web/cherrypy/code/main.py

    r2558 r2591  
    9292    def __getattr__(self, name):
    9393        if name in ("admin", "overlord"):
    94             if not cherrypy.request.login in getAfsGroupMembers(config.adminacl, config.authz.cells[0].cell):
     94            if not cherrypy.request.login in getAfsGroupMembers(config.adminacl, config.authz.afs.cells[0].cell):
    9595                raise InvalidInput('username', cherrypy.request.login,
    9696                                   'Not in admin group %s.' % config.adminacl)
  • package_branches/invirt-web/cherrypy/code/validation.py

    r2558 r2591  
    223223        admin = 'system:' + admin
    224224    try:
    225         if user in getafsgroups.getAfsGroupMembers(admin, config.authz.cells[0].cell):
     225        if user in getafsgroups.getAfsGroupMembers(admin, config.authz.afs.cells[0].cell):
    226226            return admin
    227227    except getafsgroups.AfsProcessError, e:
  • package_branches/invirt-web/cherrypy/invirt-cache-acls

    r2558 r2591  
    11#!/bin/sh
    22cells () {
    3   for i in $(invirt-getconf -l authz.cells); do
    4     invirt-getconf authz.cells.$i.cell
     3  for i in $(invirt-getconf -l authz.afs.cells); do
     4    invirt-getconf authz.afs.cells.$i.cell
    55  done
    66}
Note: See TracChangeset for help on using the changeset viewer.