mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #1168 from sfromm/issue1007
Add message reporting skipped action in cli callback
This commit is contained in:
commit
635689b3af
1 changed files with 1 additions and 0 deletions
|
@ -237,6 +237,7 @@ class CliRunnerCallbacks(DefaultRunnerCallbacks):
|
|||
super(CliRunnerCallbacks, self).on_unreachable(host, res)
|
||||
|
||||
def on_skipped(self, host, item=None):
|
||||
print "%s | skipped" % (host)
|
||||
super(CliRunnerCallbacks, self).on_skipped(host, item)
|
||||
|
||||
def on_error(self, host, err):
|
||||
|
|
Loading…
Reference in a new issue