1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Keep processing the rest of the vars_files even if one has vars

This commit is contained in:
Daniel Hokka Zakrisson 2012-10-11 23:52:01 +02:00
parent f3d7294690
commit b8b34b5110

View file

@ -306,7 +306,7 @@ class Play(object):
filename3 = utils.template(self.basedir, filename2, self.playbook.SETUP_CACHE[host]) filename3 = utils.template(self.basedir, filename2, self.playbook.SETUP_CACHE[host])
filename4 = utils.path_dwim(self.basedir, filename3) filename4 = utils.path_dwim(self.basedir, filename3)
if self._has_vars_in(filename4): if self._has_vars_in(filename4):
return continue
new_vars = utils.parse_yaml_from_file(filename4) new_vars = utils.parse_yaml_from_file(filename4)
if new_vars: if new_vars:
if type(new_vars) != dict: if type(new_vars) != dict: