mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 14:20:22 -07:00
add error handling if you try to load files in the wrong data format
This commit is contained in:
parent
08c5fe875b
commit
86ec639176
1 changed files with 3 additions and 2 deletions
|
@ -251,6 +251,8 @@ class Play(object):
|
||||||
if os.path.exists(filename4):
|
if os.path.exists(filename4):
|
||||||
found = True
|
found = True
|
||||||
data = utils.parse_yaml_from_file(filename4)
|
data = utils.parse_yaml_from_file(filename4)
|
||||||
|
if type(data) != dict:
|
||||||
|
raise errors.AnsibleError("%s must be stored as a dictionary/hash" % filename4)
|
||||||
if host is not None:
|
if host is not None:
|
||||||
if self._has_vars_in(filename2) and not self._has_vars_in(filename3):
|
if self._has_vars_in(filename2) and not self._has_vars_in(filename3):
|
||||||
# this filename has variables in it that were fact specific
|
# this filename has variables in it that were fact specific
|
||||||
|
@ -283,8 +285,7 @@ class Play(object):
|
||||||
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:
|
||||||
raise errors.AnsibleError("files specified in vars_files must be a YAML dictionary: %s" % filename4)
|
raise errors.AnsibleError("%s must be stored as dictonary/hash: %s" % filename4)
|
||||||
|
|
||||||
if host is not None and self._has_vars_in(filename2) and not self._has_vars_in(filename3):
|
if host is not None and self._has_vars_in(filename2) and not self._has_vars_in(filename3):
|
||||||
# running a host specific pass and has host specific variables
|
# running a host specific pass and has host specific variables
|
||||||
# load into setup cache
|
# load into setup cache
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue