summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2005-06-29 18:11:39 +0000
committerNarayan Desai <desai@mcs.anl.gov>2005-06-29 18:11:39 +0000
commit5cb9c2a6d352daeb0b784fee8ec9d88aa4197982 (patch)
treef103e4a6db595b9b7c1d6b0fffb887e073db3525 /src
parent6609cd931ed119eb512064acd5a15f04e33c5324 (diff)
downloadbcfg2-5cb9c2a6d352daeb0b784fee8ec9d88aa4197982.tar.gz
bcfg2-5cb9c2a6d352daeb0b784fee8ec9d88aa4197982.tar.bz2
bcfg2-5cb9c2a6d352daeb0b784fee8ec9d88aa4197982.zip
make PostInstall elements not bind
(Logical change 1.244) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1019 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 b81f743ea..77c2deffc 100644
--- a/src/lib/Server/Core.py
+++ b/src/lib/Server/Core.py
@@ -160,7 +160,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 ['SymLink', 'Directory', 'Permission']]:
+ for entry in [child for child in structure.getchildren() if child.tag not in ['SymLink', 'Directory', 'Permission', 'PostInstall']]:
try:
self.Bind(entry, metadata)
except GeneratorError: