Commit ced93d35 by Brian Coca Committed by James Cammarata

adjusted list hosts across adhoc and playbook cli

parent 3a50c08c
......@@ -111,6 +111,7 @@ class AdHocCLI(CLI):
self.display.warning("provided hosts list is empty, only localhost is available")
if self.options.listhosts:
self.display.display(' hosts (%d):' % len(hosts))
for host in hosts:
self.display.display(' %s' % host)
return 0
......
......@@ -166,7 +166,7 @@ class PlaybookCLI(CLI):
if self.options.listhosts:
playhosts = set(inventory.get_hosts(play.hosts))
msg += "\n pattern: %s\n total hosts: %d\n hosts:" % (play.hosts, len(playhosts))
msg += "\n pattern: %s\n hosts (%d):" % (play.hosts, len(playhosts))
for host in playhosts:
msg += "\n %s" % host
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment