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")
|
||||
for h in hosts:
|
||||
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']
|
||||
)
|
||||
print "\n"
|
||||
|
|
|
@ -84,7 +84,7 @@ def banner(msg):
|
|||
(out, err) = cmd.communicate()
|
||||
res = "%s\n" % out
|
||||
else:
|
||||
res = "%s ********************* \n" % msg
|
||||
res = "\n%s ********************* " % msg
|
||||
return res
|
||||
|
||||
|
||||
|
@ -190,7 +190,7 @@ class PlaybookRunnerCallbacks(DefaultRunnerCallbacks):
|
|||
def on_ok(self, host, host_result):
|
||||
# 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:
|
||||
print "ok: [%s]\n" % (host)
|
||||
print "ok: [%s]" % (host)
|
||||
else:
|
||||
print "ok: [%s] => %s" % (host, utils.smjson(host_result))
|
||||
|
||||
|
@ -225,7 +225,7 @@ class PlaybookCallbacks(object):
|
|||
self.verbose = verbose
|
||||
|
||||
def on_start(self):
|
||||
print "\n"
|
||||
pass
|
||||
|
||||
def on_notify(self, host, handler):
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue