blob: b23a529806484427939a5d3dcadfcd5c242943dc (
plain)
1
2
3
4
5
6
7
8
9
10
|
'''This generator provides rule-based entry mappings'''
__revision__ = '$Revision$'
import Bcfg2.Server.Plugin
class Rules(Bcfg2.Server.Plugin.PrioDir):
'''This is a generator that handles service assignments'''
name = 'Rules'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
|