mirror of https://github.com/ansible/ansible.git
Explicitly get the include task, and not assume it is the parent (#72378)
* Explicitly get the include task, and not assume it is the parent. Fixes #6571pull/72408/head
parent
a51a6f4a25
commit
e73a0b2460
@ -0,0 +1,3 @@
|
|||||||
|
bugfixes:
|
||||||
|
- Includes - Explicitly get the include task, and not assume it is the parent
|
||||||
|
(https://github.com/ansible/ansible/issues/65710)
|
||||||
@ -0,0 +1,11 @@
|
|||||||
|
- hosts: localhost
|
||||||
|
gather_facts: false
|
||||||
|
tasks:
|
||||||
|
- include_tasks:
|
||||||
|
file: include_tasks.yml
|
||||||
|
apply:
|
||||||
|
tags: always
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- include_tasks_result is defined
|
||||||
Loading…
Reference in New Issue