|
|
@ -445,10 +445,14 @@ class Inventory(object):
|
|
|
|
for group in groups.values():
|
|
|
|
for group in groups.values():
|
|
|
|
if pattern == 'all':
|
|
|
|
if pattern == 'all':
|
|
|
|
for host in group.get_hosts():
|
|
|
|
for host in group.get_hosts():
|
|
|
|
|
|
|
|
if host.implicit:
|
|
|
|
|
|
|
|
continue
|
|
|
|
__append_host_to_results(host)
|
|
|
|
__append_host_to_results(host)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
if self._match(group.name, pattern) and group.name not in ('all', 'ungrouped'):
|
|
|
|
if self._match(group.name, pattern) and group.name not in ('all', 'ungrouped'):
|
|
|
|
for host in group.get_hosts():
|
|
|
|
for host in group.get_hosts():
|
|
|
|
|
|
|
|
if host.implicit:
|
|
|
|
|
|
|
|
continue
|
|
|
|
__append_host_to_results(host)
|
|
|
|
__append_host_to_results(host)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
matching_hosts = self._match_list(group.get_hosts(), 'name', pattern)
|
|
|
|
matching_hosts = self._match_list(group.get_hosts(), 'name', pattern)
|
|
|
@ -463,6 +467,7 @@ class Inventory(object):
|
|
|
|
def _create_implicit_localhost(self, pattern):
|
|
|
|
def _create_implicit_localhost(self, pattern):
|
|
|
|
new_host = Host(pattern)
|
|
|
|
new_host = Host(pattern)
|
|
|
|
new_host.address = "127.0.0.1"
|
|
|
|
new_host.address = "127.0.0.1"
|
|
|
|
|
|
|
|
new_host.implicit = True
|
|
|
|
new_host.vars = self.get_host_vars(new_host)
|
|
|
|
new_host.vars = self.get_host_vars(new_host)
|
|
|
|
new_host.set_variable("ansible_connection", "local")
|
|
|
|
new_host.set_variable("ansible_connection", "local")
|
|
|
|
if "ansible_python_interpreter" not in new_host.vars:
|
|
|
|
if "ansible_python_interpreter" not in new_host.vars:
|
|
|
|