summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/Svcmgr.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
committerNarayan Desai <desai@mcs.anl.gov>2006-01-23 22:35:40 +0000
commitedca0b698637c3fd0a70af7e4752a46afca938d3 (patch)
tree658fad717833200ccb4e3725c811ccce7c10fc8d /src/lib/Server/Plugins/Svcmgr.py
parent8ca8a153dfc6bd81ede9f5cff1ee3f111ae053ee (diff)
downloadbcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.gz
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.tar.bz2
bcfg2-edca0b698637c3fd0a70af7e4752a46afca938d3.zip
last step of repo switches
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1716 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Plugins/Svcmgr.py')
-rw-r--r--src/lib/Server/Plugins/Svcmgr.py27
1 files changed, 12 insertions, 15 deletions
diff --git a/src/lib/Server/Plugins/Svcmgr.py b/src/lib/Server/Plugins/Svcmgr.py
index 2f2c7e5eb..da5ab341c 100644
--- a/src/lib/Server/Plugins/Svcmgr.py
+++ b/src/lib/Server/Plugins/Svcmgr.py
@@ -1,23 +1,20 @@
'''This generator provides service mappings'''
__revision__ = '$Revision$'
-from Bcfg2.Server.Plugin import Plugin, ScopedXMLFile, PluginInitError
+import Bcfg2.Server.Plugin
-class Svcmgr(Plugin):
+class SNode(Bcfg2.Server.Plugin.LNode):
+ '''SNode has a list of services available at a particular group intersection'''
+ __leaf__ = './Service'
+
+class SvcSrc(Bcfg2.Server.Plugin.XMLSrc):
+ '''SvcSrc files contain prioritized service definitions'''
+ __node__ = SNode
+
+class Svcmgr(Bcfg2.Server.Plugin.XMLPrioDir):
'''This is a generator that handles service assignments'''
__name__ = 'Svcmgr'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
-
- def __init__(self, core, datastore):
- Plugin.__init__(self, core, datastore)
- try:
- self.svc = ScopedXMLFile("%s/etc/services.xml"%(datastore), self.core.fam)
- except OSError:
- self.LogError("Failed to load service definition file")
- raise PluginInitError
- self.Entries = self.svc.__provides__
-
-
-
-
+ __child__ = SvcSrc
+ __element__ = 'Service'