blob: f16c7d6763e7299cf711202237a5384b7d5a2785 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
- name: Test pause module with pause and custom prompt
hosts: localhost
become: no
gather_facts: no
tasks:
- name: EXPECTED FAILURE
pause:
seconds: 2
prompt: Waiting for two seconds
- debug:
msg: Task after pause
|