mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Make fatal errors red
This commit is contained in:
parent
e1b1702616
commit
7acc0a632b
1 changed files with 7 additions and 6 deletions
|
@ -281,15 +281,16 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
|||
self.stats = stats
|
||||
self._async_notified = {}
|
||||
|
||||
def on_unreachable(self, host, msg):
|
||||
def on_unreachable(self, host, results):
|
||||
item = None
|
||||
if type(msg) == dict:
|
||||
item = msg.get('item', None)
|
||||
if type(results) == dict:
|
||||
item = results.get('item', None)
|
||||
if item:
|
||||
print "fatal: [%s] => (item=%s) => %s" % (host, item, msg)
|
||||
msg = "fatal: [%s] => (item=%s) => %s" % (host, item, results)
|
||||
else:
|
||||
print "fatal: [%s] => %s" % (host, msg)
|
||||
super(PlaybookRunnerCallbacks, self).on_unreachable(host, msg)
|
||||
msg = "fatal: [%s] => %s" % (host, results)
|
||||
print stringc(msg, 'red')
|
||||
super(PlaybookRunnerCallbacks, self).on_unreachable(host, results)
|
||||
|
||||
def on_failed(self, host, results, ignore_errors=False):
|
||||
|
||||
|
|
Loading…
Reference in a new issue