2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="START cli/timeout.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: test bad condition
|
|
|
|
vyos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
wait_for:
|
|
|
|
- result[0] contains bad_value_string
|
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- result.failed == true
|
|
|
|
- result.msg is defined
|
|
|
|
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="END cli/timeout.yaml on connection={{ ansible_connection }}"
|