mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-04 23:44:00 -07:00
implemented not showing skipped hosts config
This commit is contained in:
parent
514fa73fcd
commit
b6c6ed91fe
3 changed files with 12 additions and 9 deletions
|
@ -200,10 +200,11 @@ class CallbackBase:
|
|||
self.runner_on_ok(host, result._result)
|
||||
|
||||
def v2_runner_on_skipped(self, result):
|
||||
host = result._host.get_name()
|
||||
#FIXME, get item to pass through
|
||||
item = None
|
||||
self.runner_on_skipped(host, item)
|
||||
if not C.DISPLAY_SKIPPED_HOSTS:
|
||||
host = result._host.get_name()
|
||||
#FIXME, get item to pass through
|
||||
item = None
|
||||
self.runner_on_skipped(host, item)
|
||||
|
||||
def v2_runner_on_unreachable(self, result):
|
||||
host = result._host.get_name()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue