blob: 81a7fda59bd7f413a3fbb621a3b052d75277a65f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
- name: Test pause module with custom prompt
hosts: localhost
become: no
gather_facts: no
tasks:
- name: EXPECTED FAILURE
pause:
prompt: Custom prompt
- debug:
msg: Task after pause
|