blob: a3493302cd97535a8d33f709588cefb46605f4d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
---
# 5 expected loop-var-prefix failures at 3, 9, 19, 26, 33
- name: fail | That should trigger loop-var-prefix
ansible.builtin.debug:
var: item
loop:
- foo
- bar
- name: fail | That should fail due to wrong prefix
ansible.builtin.debug:
var: zz_item
loop:
- foo
- bar
loop_control:
loop_var: zz_item
- name: fail | That should fail due to wrong prefix
ansible.builtin.debug:
var: zz_item
with_items:
- foo
- bar
loop_control:
loop_var: zz_item
- name: fail | Using a block
block:
- name: fail | That should also not pass
ansible.builtin.debug:
var: item
loop:
- apples
- oranges
rescue:
- name: fail | That should also not pass
ansible.builtin.debug:
var: item
loop:
- avocados
- kiwis
always:
- name: fail | That should also not pass
ansible.builtin.debug:
var: item
loop:
- bananas
- muscats
|