From 09209e47d683c800527cc9f24ba5927e93503b97 Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Wed, 12 Oct 2011 20:29:53 +0200 Subject: [PATCH] ideas for explorer run Signed-off-by: Nico Schottelius --- lib/cdist/config_install.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/cdist/config_install.py b/lib/cdist/config_install.py index ad748f0b..9cb4a0df 100644 --- a/lib/cdist/config_install.py +++ b/lib/cdist/config_install.py @@ -50,11 +50,17 @@ class ConfigInstall(object): self.__init_local_paths() self.__init_remote_paths() + self.global_explorer = cdist.explorer.GlobalExplorer(self.context.global_in, out) + self.type_explorer = cdist.explorer.GlobalExplorer(self.context.global_in, out) + self.explorer = cdist.explorer.Explorer(self.context) #self.manifest = cdist.manifest.Mamifest() self.manifest.initial_manifest() self.manifest.type_manifest(cdist_object) + self.global_explorer.run()? + + self.type_explorer.run(cdist_object)? self.log = logging.getLogger(self.context.target_host)