Changeset 2560


Ignore:
Timestamp:
Nov 22, 2009, 11:14:52 PM (14 years ago)
Author:
broder
Message:

Add a magic invirt.authz.mech module that loads whatever authz.mech is
set to in the configuration.

Location:
trunk/packages/invirt-base
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-base/debian/changelog

    r2553 r2560  
    44    around subprocess.Popen.
    55  * Allow iterating over invirt.common.struct objects.
    6 
    7  -- Evan Broder <broder@mit.edu>  Sun, 22 Nov 2009 16:55:07 -0500
     6  * New invirt.authz package containing:
     7    - invirt.authz.locker: The authorization policies currently being used
     8      by XVM
     9    - invirt.authz.mech: Automagically populated by the authorization
     10      module selected in the Invirt config file
     11
     12 -- Evan Broder <broder@mit.edu>  Sun, 22 Nov 2009 21:18:38 -0500
    813
    914invirt-base (0.0.25) unstable; urgency=low
  • trunk/packages/invirt-base/python/invirt/authz/__init__.py

    r2559 r2560  
     1from invirt.config import structs as config
     2
     3mech = __import__(config.authz.mech, fromlist='dummy')
Note: See TracChangeset for help on using the changeset viewer.