adjusted list hosts across adhoc and playbook cli
This commit is contained in:
parent
782c2f75df
commit
be3da221cd
2 changed files with 2 additions and 1 deletions
|
@ -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…
Reference in a new issue