mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 03:41:25 -07:00
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')
|
||||
if not source:
|
||||
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:
|
||||
task_vars = dict()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue