blob: 396c5145c8a45a83380886f161943d7cbf679e55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
'''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'
deprecated = True
|