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])
filename4 = utils.path_dwim(self.basedir, filename3)
if self._has_vars_in(filename4):
return
continue
new_vars = utils.parse_yaml_from_file(filename4)
if new_vars:
if type(new_vars) != dict: