mirror of https://github.com/ansible/ansible.git
This reverts commit 440cf15aeb
.
pull/75783/head
parent
6a5d6896fd
commit
845935f74f
@ -1,4 +0,0 @@
|
|||||||
bugfixes:
|
|
||||||
- include_role - Only inherit from role parents in the current task dependency chain (https://github.com/ansible/ansible/issues/39543).
|
|
||||||
- include_role - Inherit from role parents beyond a depth of 3 (https://github.com/ansible/ansible/issues/47023).
|
|
||||||
- include_role - Inherit from role parents in the order of the task dependency chain.
|
|
@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: all
|
|
||||||
gather_facts: no
|
|
||||||
roles:
|
|
||||||
- 39543_role1
|
|
||||||
- role: 39543_role3
|
|
||||||
when: false
|
|
@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
- hosts: all
|
|
||||||
gather_facts: no
|
|
||||||
tasks:
|
|
||||||
- include_role: name=47023_role1
|
|
@ -1,5 +0,0 @@
|
|||||||
- debug:
|
|
||||||
msg: 'role1'
|
|
||||||
|
|
||||||
- include_role:
|
|
||||||
name: 39543_role2
|
|
@ -1,2 +0,0 @@
|
|||||||
- debug:
|
|
||||||
msg: 'role2'
|
|
@ -1,2 +0,0 @@
|
|||||||
dependencies:
|
|
||||||
- 39543_role1
|
|
@ -1,2 +0,0 @@
|
|||||||
- debug:
|
|
||||||
msg: 'role3'
|
|
@ -1 +0,0 @@
|
|||||||
my_default: defined
|
|
@ -1 +0,0 @@
|
|||||||
- include_role: name=47023_role2
|
|
@ -1 +0,0 @@
|
|||||||
my_var: defined
|
|
@ -1 +0,0 @@
|
|||||||
- include_role: name=47023_role3
|
|
@ -1 +0,0 @@
|
|||||||
- include_role: name=47023_role4
|
|
@ -1,5 +0,0 @@
|
|||||||
- debug:
|
|
||||||
msg: "Var is {{ my_var | default('undefined') }}"
|
|
||||||
|
|
||||||
- debug:
|
|
||||||
msg: "Default is {{ my_default | default('undefined') }}"
|
|
Loading…
Reference in New Issue