We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
p0.yml:
p0.yml
- hosts: all tasks: - include_tasks: t0.yml
t0.yml:
t0.yml
- import_tasks: t1.yml - include_role: name: r0
The top-level task include in p0.yml is not parsed, and so isn't the role include in t0.yml.
We should get the dependency chain
p0.yml ---> t0.yml ----> t1.yml \ +--> roles/r0
The text was updated successfully, but these errors were encountered:
Also take care of handling includes in blocks. Example (taken from stackoverflow):
- name: test hosts: all tasks: - block: - include: include1.yml - include: include2.yml when: doinclude | default('true')
Sorry, something went wrong.
No branches or pull requests
Scenario
p0.yml
:t0.yml
:Actual Behaviour
The top-level task include in
p0.yml
is not parsed, and so isn't the role include int0.yml
.Expected Behavior
We should get the dependency chain
The text was updated successfully, but these errors were encountered: