From 67373557bab0e5d5eab33abd422915e1a2ebe648 Mon Sep 17 00:00:00 2001 From: Evan Broder Date: Mon, 7 Dec 2009 21:33:43 -0500 Subject: [PATCH] Store AFS cell configuration at authz.afs.cells instead of just authz.cells, to be more clear about purpose. svn path=/trunk/packages/invirt-base/; revision=2590 --- python/invirt/authz/locker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/invirt/authz/locker.py b/python/invirt/authz/locker.py index 7982f8d..cbfc28a 100644 --- a/python/invirt/authz/locker.py +++ b/python/invirt/authz/locker.py @@ -58,7 +58,7 @@ def expandAdmin(name, owner): administrator is always interpreted as an AFS entry (either a user or a group) in the home cell (athena.mit.edu for XVM). """ - cell = config.authz.cells[0].cell + cell = config.authz.afs.cells[0].cell auth = _authenticate(cell) return _expandGroup(name, cell=cell, auth=auth) @@ -84,7 +84,7 @@ def _authenticate(cell): which authenticate directly against the machine's home realm and cells distantly related to the machine's home realm. """ - for c in config.authz.cells: + for c in config.authz.afs.cells: if c.cell == cell and not c.auth: return False -- 1.7.9.5