summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Plugins/Cfg.py
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2009-01-21 17:01:42 +0000
committerNarayan Desai <desai@mcs.anl.gov>2009-01-21 17:01:42 +0000
commit0ca22dfbc22d89d33f37ff1661f24e6ea6654499 (patch)
treec186f68c11c83ac2b5cec5d8ef51d33adb7beb11 /src/lib/Server/Plugins/Cfg.py
parent90fcec89650af7183027a19347653d9768add2cd (diff)
downloadbcfg2-0ca22dfbc22d89d33f37ff1661f24e6ea6654499.tar.gz
bcfg2-0ca22dfbc22d89d33f37ff1661f24e6ea6654499.tar.bz2
bcfg2-0ca22dfbc22d89d33f37ff1661f24e6ea6654499.zip
Remove old properties implementation and hardwiring
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@5036 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Plugins/Cfg.py')
-rw-r--r--src/lib/Server/Plugins/Cfg.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/Server/Plugins/Cfg.py b/src/lib/Server/Plugins/Cfg.py
index 85ace20bc..f9a2f737d 100644
--- a/src/lib/Server/Plugins/Cfg.py
+++ b/src/lib/Server/Plugins/Cfg.py
@@ -49,8 +49,9 @@ class CfgMatcher:
return self.basefile_reg.match(fname)
class CfgEntrySet(Bcfg2.Server.Plugin.EntrySet):
- def __init__(self, basename, path, props, entry_type, encoding):
- Bcfg2.Server.Plugin.EntrySet.__init__(self, basename, path, props, entry_type, encoding)
+ def __init__(self, basename, path, entry_type, encoding):
+ Bcfg2.Server.Plugin.EntrySet.__init__(self, basename, path, entry_type,
+ encoding)
self.specific = CfgMatcher(path.split('/')[-1])
def sort_by_specific(self, one, other):
@@ -131,7 +132,6 @@ class Cfg(Bcfg2.Server.Plugin.GroupSpool,
name = 'Cfg'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
- use_props = False
es_cls = CfgEntrySet
es_child_cls = Bcfg2.Server.Plugin.SpecificData