mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Renaming per-item and retry callbacks
This commit is contained in:
@@ -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)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user