Catch a missing include_vars filename
Related to ansible/ansible-modules-core#4445
This commit is contained in:
parent
e0bdb502e3
commit
732d722a7f
1 changed files with 4 additions and 0 deletions
|
@ -31,6 +31,10 @@ class ActionModule(ActionBase):
|
||||||
source = self._task.args.get('file')
|
source = self._task.args.get('file')
|
||||||
if not source:
|
if not source:
|
||||||
source = self._task.args.get('_raw_params')
|
source = self._task.args.get('_raw_params')
|
||||||
|
if source is None:
|
||||||
|
raise AnsibleError("No filename was found for the included vars. " + \
|
||||||
|
"Use `- include_vars: <filename>` or the `file:` option " + \
|
||||||
|
"to specify the vars filename.", self._task._ds)
|
||||||
|
|
||||||
if task_vars is None:
|
if task_vars is None:
|
||||||
task_vars = dict()
|
task_vars = dict()
|
||||||
|
|
Loading…
Reference in a new issue