summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/roles_arg_spec/roles/c/tasks/main.yml
blob: 78282be3e4fabd4d69e79cecb45dedbd6b14ee45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
---
- debug:
    msg: "Role C that includes Role A with var {{ c_int }}"

- name: "Role C import_role A with a_str {{ a_str }}"
  import_role:
    name: a

- name: "Role C include_role A with a_int {{ a_int }}"
  include_role:
    name: a
    tasks_from: "alternate"