blob: bd0850c4992bae19a3216f6a4a12f335b8a074e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
'''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'
|