From 579bd45c8765f44560f2279a063bf97c46dc050f Mon Sep 17 00:00:00 2001 From: Nico Schottelius Date: Thu, 6 Oct 2011 20:24:40 +0200 Subject: [PATCH] cleanup more stuff in config_install Signed-off-by: Nico Schottelius --- lib/cdist/config_install.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/cdist/config_install.py b/lib/cdist/config_install.py index 7d0e2c9a..ac988425 100644 --- a/lib/cdist/config_install.py +++ b/lib/cdist/config_install.py @@ -225,6 +225,7 @@ class ConfigInstall: self.path.transfer_file(local_remote_code, remote_remote_code) cdist.exec.run_or_fail([remote_remote_code], remote_prefix=True) + ### Cleaned / check functions: Round 1 :-) ################################# def stage_run(self): """The final (and real) step of deployment""" log.info("Generating and executing code") @@ -234,7 +235,6 @@ class ConfigInstall: self.object_run(cdist_object, mode="gencode") self.object_run(cdist_object, mode="code") - ### Cleaned / check functions: Round 1 :-) ################################# def deploy_to(self): """Mimic the old deploy to: Deploy to one host""" log.info("Deploying to " + self.target_host) @@ -271,6 +271,7 @@ class ConfigInstall: log.debug("Skipping rerun of object %s", cdist_object) continue else: + log.debug("Preparing object: " + cdist_object) self.run_type_explorer(cdist_object) self.run_type_manifest(cdist_object) cdist_object.prepared = True