mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Another fix for --limit in adhoc
This commit is contained in:
parent
babf47decb
commit
c860775b5d
1 changed files with 1 additions and 1 deletions
|
@ -119,7 +119,7 @@ class AdHocCLI(CLI):
|
|||
|
||||
if self.options.subset:
|
||||
inventory.subset(self.options.subset)
|
||||
if len(inventory.list_hosts()) == 0 and not no_hosts:
|
||||
if len(inventory.list_hosts(pattern)) == 0 and not no_hosts:
|
||||
# Invalid limit
|
||||
raise AnsibleError("Specified --limit does not match any hosts")
|
||||
|
||||
|
|
Loading…
Reference in a new issue