mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
21 lines
388 B
YAML
21 lines
388 B
YAML
|
---
|
||
|
- debug: msg="START nxapi/timeout.yaml"
|
||
|
|
||
|
- name: test bad condition
|
||
|
nxos_command:
|
||
|
commands:
|
||
|
- show version
|
||
|
wait_for:
|
||
|
- "result[0].header_str contains foo"
|
||
|
retries: 1
|
||
|
provider: "{{ nxapi }}"
|
||
|
register: result
|
||
|
ignore_errors: yes
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- "result.failed == true"
|
||
|
- "result.msg is defined"
|
||
|
|
||
|
- debug: msg="END nxapi/timeout.yaml"
|