Fix hostvars lookup of locahost based on 5f1bbb4

(cherry picked from commit b51d0dd69b)
This commit is contained in:
James Cammarata 2016-06-08 14:14:02 -05:00
parent 00cf1cbac1
commit c9b125d21a

View file

@ -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)