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,27 +248,50 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
||||||
|
|
||||||
def on_unreachable(self, host, msg):
|
def on_unreachable(self, host, msg):
|
||||||
|
|
||||||
print "fatal: [%s] => %s" % (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):
|
def on_failed(self, host, results):
|
||||||
|
|
||||||
print "failed: [%s] => %s" % (host, utils.jsonify(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):
|
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
|
# 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 not self.verbose or host_result.get("verbose_override",None) is not None:
|
||||||
print "ok: [%s]" % (host)
|
if item:
|
||||||
|
print "ok: [%s] => (item=%s)" % (host,item)
|
||||||
|
else:
|
||||||
|
print "ok: [%s]" % (host)
|
||||||
else:
|
else:
|
||||||
print "ok: [%s] => %s" % (host, utils.jsonify(host_result))
|
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):
|
def on_error(self, host, err):
|
||||||
|
|
||||||
print >>sys.stderr, "err: [%s] => %s" % (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):
|
def on_skipped(self, host):
|
||||||
|
|
||||||
print "skipping: [%s]" % host
|
print "skipping: [%s]" % host
|
||||||
|
|
||||||
def on_no_hosts(self):
|
def on_no_hosts(self):
|
||||||
|
|
||||||
|
|
|
@ -645,6 +645,7 @@ class Runner(object):
|
||||||
self.callbacks.on_unreachable(host, result.result)
|
self.callbacks.on_unreachable(host, result.result)
|
||||||
else:
|
else:
|
||||||
data = result.result
|
data = result.result
|
||||||
|
result.result['item'] = inject.get('item', None)
|
||||||
if 'skipped' in data:
|
if 'skipped' in data:
|
||||||
self.callbacks.on_skipped(result.host)
|
self.callbacks.on_skipped(result.host)
|
||||||
elif not result.is_successful():
|
elif not result.is_successful():
|
||||||
|
|
Loading…
Reference in a new issue