mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
a197125954
* Quick and dirty sed to add provider * Manually verify the rest of the cases * Add missing provider
19 lines
460 B
YAML
19 lines
460 B
YAML
---
|
|
- debug: msg="START common/timeout.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: test bad condition
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
wait_for:
|
|
- "result[0] contains bad_value_string"
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- debug: msg="END common/timeout.yaml on connection={{ ansible_connection }}"
|