mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-28 11:10:21 -07:00
Making inventory pattern matching handle group names
This commit is contained in:
parent
d0f0315c9d
commit
0188889aea
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class Inventory(object):
|
||||||
inverted = False
|
inverted = False
|
||||||
for group in groups:
|
for group in groups:
|
||||||
for host in group.get_hosts():
|
for host in group.get_hosts():
|
||||||
if group.name == pat or pat == 'all' or self._match(host.name, pat):
|
if self._match(group.name, pat) or pat == 'all' or self._match(host.name, pat):
|
||||||
# must test explicitly for None because [] means no hosts allowed
|
# must test explicitly for None because [] means no hosts allowed
|
||||||
if self._restriction==None or host.name in self._restriction:
|
if self._restriction==None or host.name in self._restriction:
|
||||||
if inverted:
|
if inverted:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue