have object seave its explorer outputs

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-10-11 16:59:43 +02:00
parent f0852209f0
commit d95d195b40
1 changed files with 3 additions and 2 deletions

View File

@ -93,8 +93,9 @@ class ConfigInstall(object):
def object_prepare(self, cdist_object):
"""Prepare object: Run type explorer + manifest"""
log.debug("Preparing object: " + cdist_object.name)
self.run_type_explorer(cdist_object)
self.run_type_manifest(cdist_object)
cdist_object.explorers =
self.explorer.run_type_explorer(cdist_object)
self.manifest.run_type_manifest(cdist_object)
cdist_object.prepared = True
def object_run(self, cdist_object):