mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 22:33:25 +00:00
Change message when a play matches no hosts
I guess my previous pull request was confusing, by changing the message to something we already do for tasks, it makes it more clear.
Just like we say:
TASK: [foo bar]
skipping: [system01]
The message now is more clear:
PLAY [wagawaga] *******************************
skipping: no hosts matched
It makes it clear that we are skipping the play, just as is done for a task when a condition is not met.
This commit is contained in:
@@ -421,7 +421,7 @@ class PlaybookCallbacks(object):
|
|||||||
call_callback_module('playbook_on_notify', host, handler)
|
call_callback_module('playbook_on_notify', host, handler)
|
||||||
|
|
||||||
def on_no_hosts_matched(self):
|
def on_no_hosts_matched(self):
|
||||||
print stringc("no hosts matched", 'red')
|
print stringc("skipping: no hosts matched", 'cyan')
|
||||||
call_callback_module('playbook_on_no_hosts_matched')
|
call_callback_module('playbook_on_no_hosts_matched')
|
||||||
|
|
||||||
def on_no_hosts_remaining(self):
|
def on_no_hosts_remaining(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user