mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
No hosts matched goes to stderr.
This commit is contained in:
parent
d1d318b028
commit
6caad9ac8f
1 changed files with 2 additions and 2 deletions
|
@ -94,7 +94,7 @@ class Cli(object):
|
||||||
inventory_manager.subset(options.subset)
|
inventory_manager.subset(options.subset)
|
||||||
hosts = inventory_manager.list_hosts(pattern)
|
hosts = inventory_manager.list_hosts(pattern)
|
||||||
if len(hosts) == 0:
|
if len(hosts) == 0:
|
||||||
callbacks.display("No hosts matched")
|
callbacks.display("No hosts matched", stderr=True)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
if options.listhosts:
|
if options.listhosts:
|
||||||
|
@ -132,7 +132,7 @@ class Cli(object):
|
||||||
inventory_manager.subset(options.subset)
|
inventory_manager.subset(options.subset)
|
||||||
hosts = inventory_manager.list_hosts(pattern)
|
hosts = inventory_manager.list_hosts(pattern)
|
||||||
if len(hosts) == 0:
|
if len(hosts) == 0:
|
||||||
callbacks.display("No hosts matched")
|
callbacks.display("No hosts matched", stderr=True)
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
if options.listhosts:
|
if options.listhosts:
|
||||||
|
|
Loading…
Reference in a new issue