Conditional Imports should only import the first file in the list, not all of them. This change stops looping through the vars_files list as soon as a file is found.
This commit is contained in:
parent
4e74ab4856
commit
413fb15e0a
1 changed files with 2 additions and 0 deletions
|
@ -232,6 +232,8 @@ class Play(object):
|
|||
self.vars.update(data)
|
||||
elif host is not None:
|
||||
self.playbook.callbacks.on_not_import_for_host(host, filename4)
|
||||
if found
|
||||
break
|
||||
if not found:
|
||||
raise errors.AnsibleError(
|
||||
"%s: FATAL, no files matched for vars_files import sequence: %s" % (host, sequence)
|
||||
|
|
Loading…
Reference in a new issue