Actually check for import_role when loop detected (#39218)
This commit is contained in:
parent
c30f46f7c6
commit
1c49cc4377
1 changed files with 1 additions and 1 deletions
|
@ -317,7 +317,7 @@ def load_list_of_tasks(ds, play, block=None, role=None, task_include=None, use_h
|
|||
|
||||
if is_static:
|
||||
if ir.loop is not None:
|
||||
if 'import_tasks' in task_ds:
|
||||
if 'import_role' in task_ds:
|
||||
raise AnsibleParserError("You cannot use loops on 'import_role' statements. You should use 'include_role' instead.", obj=task_ds)
|
||||
else:
|
||||
raise AnsibleParserError("You cannot use 'static' on an include_role with a loop", obj=task_ds)
|
||||
|
|
Loading…
Reference in a new issue