24 lines
331 B
YAML
24 lines
331 B
YAML
- name: Perform some tests
|
|
hosts: all
|
|
become: false
|
|
gather_facts: false
|
|
|
|
|
|
tasks:
|
|
- name: Do a debug thing
|
|
debug:
|
|
msg: "Hello world!"
|
|
|
|
|
|
- name: Pause for 30 seconds
|
|
pause:
|
|
prompt : Triggering long running task
|
|
seconds : 30
|
|
|
|
|
|
- name: Do another debug thing
|
|
debug:
|
|
msg: "Goodbye!"
|
|
|
|
|