mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
386 B
YAML
22 lines
386 B
YAML
7 years ago
|
- name: Test pause
|
||
|
hosts: testhost
|
||
|
gather_facts: no
|
||
|
become: no
|
||
|
|
||
|
tasks:
|
||
|
- pause:
|
||
|
seconds: 1
|
||
|
register: results
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- results.stdout is search('Paused for \d+\.\d+ seconds')
|
||
|
|
||
|
- pause:
|
||
|
minutes: 1
|
||
|
register: results
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- results.stdout is search('Paused for \d+\.\d+ minutes')
|