blob: 7050ed13b262f1387342bac99d91fb06d3c43255 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
- hosts: all
vars:
var_is_set: no
tasks:
- import_role:
name: test-role
- hosts: all
vars:
var_is_set: no
tasks:
- include_role:
name: test-role
tasks_from: world
when: "{{ var_is_set }}"
|