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
|
||||
for group in groups:
|
||||
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
|
||||
if self._restriction==None or host.name in self._restriction:
|
||||
if inverted:
|
||||
|
|
Loading…
Reference in a new issue