mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
improve output formating for playbook
This commit is contained in:
parent
3235da074e
commit
7ecdb83800
2 changed files with 4 additions and 4 deletions
|
@ -87,7 +87,7 @@ def main(args):
|
||||||
print callbacks.banner("PLAY RECAP")
|
print callbacks.banner("PLAY RECAP")
|
||||||
for h in hosts:
|
for h in hosts:
|
||||||
t = pb.stats.summarize(h)
|
t = pb.stats.summarize(h)
|
||||||
print "%-30s : ok=%4s changed=%4s unreachable=%4s failed=%4s " % (h,
|
print "%-30s : ok=%-4s changed=%-4s unreachable=%-4s failed=%-4s " % (h,
|
||||||
t['ok'], t['changed'], t['unreachable'], t['failures']
|
t['ok'], t['changed'], t['unreachable'], t['failures']
|
||||||
)
|
)
|
||||||
print "\n"
|
print "\n"
|
||||||
|
|
|
@ -84,7 +84,7 @@ def banner(msg):
|
||||||
(out, err) = cmd.communicate()
|
(out, err) = cmd.communicate()
|
||||||
res = "%s\n" % out
|
res = "%s\n" % out
|
||||||
else:
|
else:
|
||||||
res = "%s ********************* \n" % msg
|
res = "\n%s ********************* " % msg
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
||||||
def on_ok(self, host, host_result):
|
def on_ok(self, host, host_result):
|
||||||
# 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]\n" % (host)
|
print "ok: [%s]" % (host)
|
||||||
else:
|
else:
|
||||||
print "ok: [%s] => %s" % (host, utils.smjson(host_result))
|
print "ok: [%s] => %s" % (host, utils.smjson(host_result))
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@ class PlaybookCallbacks(object):
|
||||||
self.verbose = verbose
|
self.verbose = verbose
|
||||||
|
|
||||||
def on_start(self):
|
def on_start(self):
|
||||||
print "\n"
|
pass
|
||||||
|
|
||||||
def on_notify(self, host, handler):
|
def on_notify(self, host, handler):
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in a new issue