mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
correctly deal with changed (#31812)
This commit is contained in:
committed by
Jordan Borean
parent
5751b9b224
commit
21cdddce74
@@ -218,7 +218,10 @@ class CallbackBase(AnsiblePlugin):
|
||||
|
||||
def _clean_results(self, result, task_name):
|
||||
''' removes data from results for display '''
|
||||
pass
|
||||
if task_name in ['debug']:
|
||||
for remove_key in ('invocation'):
|
||||
if remove_key in result:
|
||||
del result[remove_key]
|
||||
|
||||
def set_play_context(self, play_context):
|
||||
pass
|
||||
|
||||
@@ -95,6 +95,8 @@ class CallbackModule(CallbackBase):
|
||||
else:
|
||||
|
||||
if (self._display.verbosity > 0 or '_ansible_verbose_always' in result._result) and '_ansible_verbose_override' not in result._result:
|
||||
if result._task.action == 'debug' and 'changed' in result._result:
|
||||
del result._result['changed']
|
||||
msg += " => %s" % (self._dump_results(result._result),)
|
||||
self._display.display(msg, color=color)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user