summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2008-03-09 15:44:11 +0000
committerNarayan Desai <desai@mcs.anl.gov>2008-03-09 15:44:11 +0000
commit9f5e36f66b34988caa6459663a422c4379676a3b (patch)
treea3d8dad1f7afd83d1dfb47a2b00c7bf3b3357e3b /src
parent14ebcbeb4a5076f8b7a5484115246e7ab30c6517 (diff)
downloadbcfg2-9f5e36f66b34988caa6459663a422c4379676a3b.tar.gz
bcfg2-9f5e36f66b34988caa6459663a422c4379676a3b.tar.bz2
bcfg2-9f5e36f66b34988caa6459663a422c4379676a3b.zip
deprecate PostInstalls (in schemas and Core.py) -- Actions can be used instead
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@4408 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Server/Core.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Server/Core.py b/src/lib/Server/Core.py
index 799642640..a0be13313 100644
--- a/src/lib/Server/Core.py
+++ b/src/lib/Server/Core.py
@@ -265,7 +265,7 @@ class Core(object):
def BindStructure(self, structure, metadata):
'''Bind a complete structure'''
- for entry in [child for child in structure.getchildren() if child.tag not in ['PostInstall']]:
+ for entry in structure.getchildren():
try:
self.Bind(entry, metadata)
except PluginExecutionError: