mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-25 01:30:22 -07:00
12 lines
203 B
YAML
12 lines
203 B
YAML
- name: Test pause module with pause
|
|
hosts: localhost
|
|
become: no
|
|
gather_facts: no
|
|
|
|
tasks:
|
|
- name: EXPECTED FAILURE
|
|
pause:
|
|
seconds: 2
|
|
|
|
- debug:
|
|
msg: Task after pause
|