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