65ab37cbd3
* Remove provider from each task as it is not required. * Add `authorize: yes` whereever required
19 lines
361 B
YAML
19 lines
361 B
YAML
---
|
|
- debug: msg="START cli/timeout.yaml"
|
|
|
|
- name: test bad condition
|
|
ios_command:
|
|
commands:
|
|
- show version
|
|
authorize: yes
|
|
wait_for:
|
|
- "result[0] contains bad_value_string"
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed == true"
|
|
- "result.msg is defined"
|
|
|
|
- debug: msg="END cli/timeout.yaml"
|