blob: 24266fffc76c66c8caf7454c6423e98188212b54 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
- hosts: localhost
tasks:
- name: command with creates check
command: echo blah
args:
creates: Z
- name: command with removes check
command: echo blah
args:
removes: Z
- name: command with changed_when
command: echo blah
changed_when: False
- name: command with inline creates
command: creates=Z echo blah
- name: command with inline removes
command: removes=Z echo blah
- name: command with cmd
command:
cmd:
echo blah
args:
creates: Z
- name: shell with creates check
shell: echo blah
args:
creates: Z
- name: shell with removes check
shell: echo blah
args:
removes: Z
- name: shell with changed_when
shell: echo blah
changed_when: False
- name: shell with inline creates
shell: creates=Z echo blah
- name: shell with inline removes
shell: removes=Z echo blah
- name: shell with cmd
shell:
cmd:
echo blah
args:
creates: Z
- hosts: localhost
handlers:
- name: restart something
command: do something
- include: included-handlers.yml
|