mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
improved output in with_items fixes: #627
This commit is contained in:
parent
8bb8314d10
commit
34e2584220
2 changed files with 30 additions and 6 deletions
|
@ -248,22 +248,45 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
|||
|
||||
def on_unreachable(self, host, msg):
|
||||
|
||||
item = msg.get('item', None)
|
||||
|
||||
if item:
|
||||
print "fatal: [%s] => (item=%s) => %s" % (host, item, msg)
|
||||
else:
|
||||
print "fatal: [%s] => %s" % (host, msg)
|
||||
|
||||
def on_failed(self, host, results):
|
||||
|
||||
item = results.get('item', None)
|
||||
|
||||
if item:
|
||||
print "failed: [%s] => (item=%s) => %s" % (host, item, utils.jsonify(results))
|
||||
else:
|
||||
print "failed: [%s] => %s" % (host, utils.jsonify(results))
|
||||
|
||||
def on_ok(self, host, host_result):
|
||||
|
||||
item = host_result.get('item', None)
|
||||
|
||||
# show verbose output for non-setup module results if --verbose is used
|
||||
if not self.verbose or host_result.get("verbose_override",None) is not None:
|
||||
if item:
|
||||
print "ok: [%s] => (item=%s)" % (host,item)
|
||||
else:
|
||||
print "ok: [%s]" % (host)
|
||||
else:
|
||||
if item:
|
||||
print "ok: [%s] => (item=%s) => %s" % (host, item, utils.jsonify(host_result))
|
||||
else:
|
||||
print "ok: [%s] => %s" % (host, utils.jsonify(host_result))
|
||||
|
||||
def on_error(self, host, err):
|
||||
|
||||
item = err.get('item', None)
|
||||
|
||||
if item:
|
||||
print >>sys.stderr, "err: [%s] => (item=%s) => %s" % (host, item, err)
|
||||
else:
|
||||
print >>sys.stderr, "err: [%s] => %s" % (host, err)
|
||||
|
||||
def on_skipped(self, host):
|
||||
|
|
|
@ -645,6 +645,7 @@ class Runner(object):
|
|||
self.callbacks.on_unreachable(host, result.result)
|
||||
else:
|
||||
data = result.result
|
||||
result.result['item'] = inject.get('item', None)
|
||||
if 'skipped' in data:
|
||||
self.callbacks.on_skipped(result.host)
|
||||
elif not result.is_successful():
|
||||
|
|
Loading…
Reference in a new issue