diff options
Diffstat (limited to 'bin/cloud-init')
-rwxr-xr-x | bin/cloud-init | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bin/cloud-init b/bin/cloud-init index 6ede60af..866f8ca4 100755 --- a/bin/cloud-init +++ b/bin/cloud-init @@ -224,6 +224,9 @@ def main_init(name, args): LOG.debug("Exiting early due to the existence of %s files", existing_files) return (None, []) + else: + LOG.debug("Execution continuing, no previous run detected that" + " would allow us to stop early.") else: # The cache is not instance specific, so it has to be purged # but we want 'start' to benefit from a cache if @@ -475,7 +478,7 @@ def status_wrapper(name, args, data_d=None, link_d=None): nullstatus = { 'errors': [], 'start': None, - 'end': None, + 'finished': None, } status = {'v1': {}} for m in modes: |