mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 19:32:47 +00:00
Warn if something loaded by vars_files is not a dictionary
This commit is contained in:
@@ -217,5 +217,7 @@ class Play(object):
|
||||
fpath = utils.path_dwim(self.playbook.basedir, filename2)
|
||||
new_vars = utils.parse_yaml_from_file(fpath)
|
||||
if new_vars:
|
||||
if type(new_vars) != dict:
|
||||
raise errors.AnsibleError("files specified in vars_files must be a YAML dictionary: %s" % fpath)
|
||||
self.playbook.SETUP_CACHE[host].update(new_vars)
|
||||
#else: could warn if vars file contains no vars.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user