This function is for setting variables on hosts. So those two parts are always required.

Don't have to check for the existence of those in the function.  If they
aren't set to iterables then it should be up to the calling code to
handle it.
This commit is contained in:
Toshio Kuratomi 2017-07-13 20:15:13 -07:00
parent b4a58b65fb
commit e986e31a75

View file

@ -74,13 +74,10 @@ class BaseInventoryPlugin(object):
pass
def populate_host_vars(self, hosts, variables, group=None, port=None):
if hosts:
for host in hosts:
self.inventory.add_host(host, group=group, port=port)
if variables:
for k in variables:
self.inventory.set_variable(host, k, variables[k])
for host in hosts:
self.inventory.add_host(host, group=group, port=port)
for k in variables:
self.inventory.set_variable(host, k, variables[k])
def _compose(self, template, variables):
''' helper method for pluigns to compose variables for Ansible based on jinja2 expression and inventory vars'''