|
|
|
@ -464,6 +464,7 @@ class Config(object): |
|
|
|
|
|
|
|
|
|
def object_prepare(self, cdist_object): |
|
|
|
|
"""Prepare object: Run type explorer + manifest""" |
|
|
|
|
self.log.info("Preparing object {}".format(cdist_object.name)) |
|
|
|
|
self.log.info( |
|
|
|
|
"Running manifest and explorers for " + cdist_object.name) |
|
|
|
|
self.explorer.run_type_explorers(cdist_object) |
|
|
|
@ -473,6 +474,7 @@ class Config(object): |
|
|
|
|
def object_run(self, cdist_object): |
|
|
|
|
"""Run gencode and code for an object""" |
|
|
|
|
|
|
|
|
|
self.log.info("Running object " + cdist_object.name) |
|
|
|
|
self.log.verbose("Trying to run object %s" % (cdist_object.name)) |
|
|
|
|
if cdist_object.state == core.CdistObject.STATE_DONE: |
|
|
|
|
raise cdist.Error(("Attempting to run an already finished " |
|
|
|
@ -481,7 +483,7 @@ class Config(object): |
|
|
|
|
cdist_type = cdist_object.cdist_type |
|
|
|
|
|
|
|
|
|
# Generate |
|
|
|
|
self.log.info("Generating code for %s" % (cdist_object.name)) |
|
|
|
|
self.log.debug("Generating code for %s" % (cdist_object.name)) |
|
|
|
|
cdist_object.code_local = self.code.run_gencode_local(cdist_object) |
|
|
|
|
cdist_object.code_remote = self.code.run_gencode_remote(cdist_object) |
|
|
|
|
if cdist_object.code_local or cdist_object.code_remote: |
|
|
|
@ -492,8 +494,12 @@ class Config(object): |
|
|
|
|
if cdist_object.code_local or cdist_object.code_remote: |
|
|
|
|
self.log.info("Executing code for %s" % (cdist_object.name)) |
|
|
|
|
if cdist_object.code_local: |
|
|
|
|
self.log.trace("Executing local code for %s" |
|
|
|
|
% (cdist_object.name)) |
|
|
|
|
self.code.run_code_local(cdist_object) |
|
|
|
|
if cdist_object.code_remote: |
|
|
|
|
self.log.trace("Executing remote code for %s" |
|
|
|
|
% (cdist_object.name)) |
|
|
|
|
self.code.transfer_code_remote(cdist_object) |
|
|
|
|
self.code.run_code_remote(cdist_object) |
|
|
|
|
else: |
|
|
|
|