From d95d195b4063b4d7b6806c66c3df5ac34db6dda1 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Tue, 11 Oct 2011 16:59:43 +0200 Subject: [PATCH] have object seave its explorer outputs Signed-off-by: Nico Schottelius --- lib/cdist/config_install.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/cdist/config_install.py b/lib/cdist/config_install.py index 7864489d..f9aeaf19 100644 --- a/lib/cdist/config_install.py +++ b/lib/cdist/config_install.py @@ -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):