mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-25 16:06:43 +00:00
Fix hostvars lookup of locahost based on 5f1bbb4
This commit is contained in:
@@ -62,7 +62,11 @@ class HostVars(collections.Mapping):
|
||||
self._inventory = inventory
|
||||
|
||||
def _find_host(self, host_name):
|
||||
return self._inventory.get_host(host_name)
|
||||
if host_name in C.LOCALHOST:
|
||||
host = self._inventory.localhost
|
||||
else:
|
||||
host = self._inventory.get_host(host_name)
|
||||
return host
|
||||
|
||||
def __getitem__(self, host_name):
|
||||
host = self._find_host(host_name)
|
||||
|
||||
Reference in New Issue
Block a user