Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-10-05 15:53:34 +02:00
parent 9128cc28c4
commit 28428177ae

View file

@ -63,7 +63,7 @@ class ConfigInstall:
def cleanup(self):
self.path.cleanup()
def run_global_explores(self):
def run_global_explorers(self):
"""Run global explorers"""
log.info("Running global explorers")
explorers = self.path.list_global_explorers()
@ -203,7 +203,7 @@ class ConfigInstall:
outfile_fd = open(outfile, "w")
# Need to flush to ensure our write is done before stdout write
# FIXME: CODE_HEADER needed in our sh -e scenario????
# FIXME: CODE_HEADER needed in our sh -e scenario?
outfile_fd.write(CODE_HEADER)
outfile_fd.flush()
@ -242,7 +242,7 @@ class ConfigInstall:
def stage_prepare(self):
"""Do everything for a deploy, minus the actual code stage"""
self.init_deploy()
self.run_global_explores()
self.run_global_explorers()
self.run_initial_manifest()
log.info("Running object manifests and type explorers")