adjusted list hosts across adhoc and playbook cli

pull/11787/head
Brian Coca 9 years ago
parent 782c2f75df
commit be3da221cd

@ -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

Loading…
Cancel
Save