Merge pull request #15890 from brandond/inv_refresh_hostvars-fixes_15115

Ignore limits and restrictions when parsing inventory.
This commit is contained in:
James Cammarata 2016-07-05 15:59:05 -05:00 committed by GitHub
commit a178ffa674

View file

@ -159,8 +159,8 @@ class Inventory(object):
group.vars = combine_vars(group.vars, self.get_group_variables(group.name))
self.get_group_vars(group)
# set host vars from host_vars/ files and vars plugins
for host in self.get_hosts():
# get host vars from host_vars/ files and vars plugins
for host in self.get_hosts(ignore_limits_and_restrictions=True):
host.vars = combine_vars(host.vars, self.get_host_variables(host.name))
self.get_host_vars(host)