mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
Renaming per-item and retry callbacks
This commit is contained in:
parent
959711b56e
commit
13f3cbaf3b
8 changed files with 21 additions and 21 deletions
|
@ -63,14 +63,14 @@ class CallbackModule(CallbackModule_default):
|
|||
def v2_playbook_on_include(self, included_file):
|
||||
pass
|
||||
|
||||
def v2_playbook_item_on_ok(self, result):
|
||||
def v2_runner_item_on_ok(self, result):
|
||||
self.display_task_banner()
|
||||
self.super_ref.v2_playbook_item_on_ok(result)
|
||||
self.super_ref.v2_runner_item_on_ok(result)
|
||||
|
||||
def v2_playbook_item_on_skipped(self, result):
|
||||
def v2_runner_item_on_skipped(self, result):
|
||||
pass
|
||||
|
||||
def v2_playbook_item_on_failed(self, result):
|
||||
def v2_runner_item_on_failed(self, result):
|
||||
self.display_task_banner()
|
||||
self.super_ref.v2_playbook_item_on_failed(result)
|
||||
self.super_ref.v2_runner_item_on_failed(result)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue