mirror of
https://github.com/ansible-collections/ansible.posix.git
synced 2026-01-12 15:45:20 +01:00
Compare commits
1 commit
4474b90eca
...
cc36f525d0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cc36f525d0 |
3 changed files with 8 additions and 4 deletions
|
|
@ -1,2 +0,0 @@
|
||||||
minor_changes:
|
|
||||||
- "profile_tasks and profile_roles callback plugins - avoid deleted/deprecated callback functions, instead use modern interface that was introduced a longer time ago (https://github.com/ansible-collections/ansible.posix/issues/650)."
|
|
||||||
|
|
@ -124,7 +124,10 @@ class CallbackModule(CallbackBase):
|
||||||
def v2_playbook_on_handler_task_start(self, task):
|
def v2_playbook_on_handler_task_start(self, task):
|
||||||
self._record_task(task)
|
self._record_task(task)
|
||||||
|
|
||||||
def v2_playbook_on_stats(self, stats):
|
def playbook_on_setup(self):
|
||||||
|
self._display_tasktime()
|
||||||
|
|
||||||
|
def playbook_on_stats(self, stats):
|
||||||
# Align summary report header with other callback plugin summary
|
# Align summary report header with other callback plugin summary
|
||||||
self._display.banner("ROLES RECAP")
|
self._display.banner("ROLES RECAP")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -209,7 +209,10 @@ class CallbackModule(CallbackBase):
|
||||||
def v2_playbook_on_handler_task_start(self, task):
|
def v2_playbook_on_handler_task_start(self, task):
|
||||||
self._record_task(task)
|
self._record_task(task)
|
||||||
|
|
||||||
def v2_playbook_on_stats(self, stats):
|
def playbook_on_setup(self):
|
||||||
|
self._display_tasktime()
|
||||||
|
|
||||||
|
def playbook_on_stats(self, stats):
|
||||||
# Align summary report header with other callback plugin summary
|
# Align summary report header with other callback plugin summary
|
||||||
self._display.banner("TASKS RECAP")
|
self._display.banner("TASKS RECAP")
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue