mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 05:10:22 -07:00
switched host patterns to use sets, simplified logic which now uses buitins
This commit is contained in:
parent
883f451158
commit
8e2f0b3f2c
2 changed files with 5 additions and 6 deletions
|
@ -56,7 +56,7 @@ class HostVars(collections.Mapping):
|
|||
new_host.set_variable("ansible_python_interpreter", sys.executable)
|
||||
new_host.set_variable("ansible_connection", "local")
|
||||
new_host.address = '127.0.0.1'
|
||||
hosts.append(new_host)
|
||||
hosts.add(new_host)
|
||||
|
||||
for host in hosts:
|
||||
self._lookup[host.name] = host
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue