summaryrefslogtreecommitdiffstats
path: root/build/lib/Bcfg2/Server/Plugins/Properties.py
diff options
context:
space:
mode:
authorFabian Affolter <fabian@bernewireless.net>2010-12-13 23:22:40 +0100
committerFabian Affolter <fabian@bernewireless.net>2010-12-13 23:22:40 +0100
commitf5792d907e357c90624ec110d908d42b94296a12 (patch)
treefc4976fb05c8d4026bc2580e48ad8070d85bd7c7 /build/lib/Bcfg2/Server/Plugins/Properties.py
parent18b3b41b3f993b2dd5a10e1bbb8abf959c57c4e2 (diff)
downloadbcfg2-f5792d907e357c90624ec110d908d42b94296a12.tar.gz
bcfg2-f5792d907e357c90624ec110d908d42b94296a12.tar.bz2
bcfg2-f5792d907e357c90624ec110d908d42b94296a12.zip
Removed build files
Diffstat (limited to 'build/lib/Bcfg2/Server/Plugins/Properties.py')
-rw-r--r--build/lib/Bcfg2/Server/Plugins/Properties.py37
1 files changed, 0 insertions, 37 deletions
diff --git a/build/lib/Bcfg2/Server/Plugins/Properties.py b/build/lib/Bcfg2/Server/Plugins/Properties.py
deleted file mode 100644
index 86330f6a0..000000000
--- a/build/lib/Bcfg2/Server/Plugins/Properties.py
+++ /dev/null
@@ -1,37 +0,0 @@
-import copy
-import lxml.etree
-
-import Bcfg2.Server.Plugin
-
-
-class PropertyFile(Bcfg2.Server.Plugin.XMLFileBacked):
- """Class for properties files."""
-
- def Index(self):
- """Build data into an xml object."""
- try:
- self.data = lxml.etree.XML(self.data)
- except lxml.etree.XMLSyntaxError:
- Bcfg2.Server.Plugin.logger.error("Failed to parse %s" % self.name)
-
-
-class PropDirectoryBacked(Bcfg2.Server.Plugin.DirectoryBacked):
- __child__ = PropertyFile
-
-
-class Properties(Bcfg2.Server.Plugin.Plugin,
- Bcfg2.Server.Plugin.Connector):
- """
- The properties plugin maps property
- files into client metadata instances.
- """
- name = 'Properties'
- version = '$Revision$'
-
- def __init__(self, core, datastore):
- Bcfg2.Server.Plugin.Plugin.__init__(self, core, datastore)
- Bcfg2.Server.Plugin.Connector.__init__(self)
- self.store = PropDirectoryBacked(self.data, core.fam)
-
- def get_additional_data(self, _):
- return copy.deepcopy(self.store.entries)