mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Display task banner before showing file diff (#42573)
This commit is contained in:
parent
8e26a58443
commit
824524c67a
1 changed files with 3 additions and 0 deletions
|
@ -207,6 +207,9 @@ class CallbackModule(CallbackBase):
|
|||
self._display.banner(msg)
|
||||
|
||||
def v2_on_file_diff(self, result):
|
||||
if self._last_task_banner != result._task._uuid:
|
||||
self._print_task_banner(result._task)
|
||||
|
||||
if result._task.loop and 'results' in result._result:
|
||||
for res in result._result['results']:
|
||||
if 'diff' in res and res['diff'] and res.get('changed', False):
|
||||
|
|
Loading…
Reference in a new issue