From 6591dd560d30362cc924a9bc2f4c918318b125ce Mon Sep 17 00:00:00 2001 From: Matt Martz Date: Fri, 30 May 2014 11:03:18 -0400 Subject: [PATCH] Show delegate_to hint in callbacks --- lib/ansible/callbacks.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lib/ansible/callbacks.py b/lib/ansible/callbacks.py index db1e3eedf3e..44d2404d78b 100644 --- a/lib/ansible/callbacks.py +++ b/lib/ansible/callbacks.py @@ -448,6 +448,10 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks): self._async_notified = {} def on_unreachable(self, host, results): + delegate_to = self.runner.module_vars.get('delegate_to') + if delegate_to: + host = '%s -> %s' % (host, delegate_to) + item = None if type(results) == dict: item = results.get('item', None) @@ -459,7 +463,9 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks): super(PlaybookRunnerCallbacks, self).on_unreachable(host, results) def on_failed(self, host, results, ignore_errors=False): - + delegate_to = self.runner.module_vars.get('delegate_to') + if delegate_to: + host = '%s -> %s' % (host, delegate_to) results2 = results.copy() results2.pop('invocation', None) @@ -492,6 +498,9 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks): super(PlaybookRunnerCallbacks, self).on_failed(host, results, ignore_errors=ignore_errors) def on_ok(self, host, host_result): + delegate_to = self.runner.module_vars.get('delegate_to') + if delegate_to: + host = '%s -> %s' % (host, delegate_to) item = host_result.get('item', None) @@ -528,6 +537,10 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks): super(PlaybookRunnerCallbacks, self).on_ok(host, host_result) def on_skipped(self, host, item=None): + delegate_to = self.runner.module_vars.get('delegate_to') + if delegate_to: + host = '%s -> %s' % (host, delegate_to) + if constants.DISPLAY_SKIPPED_HOSTS: msg = '' if item: