2016-10-28 20:50:29 +02:00
|
|
|
---
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="START cli/invalid.yaml on connection={{ ansible_connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: run invalid command
|
|
|
|
vyos_command:
|
|
|
|
commands: show foo
|
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert: { that: result.failed }
|
|
|
|
|
|
|
|
- name: run commands that include invalid command
|
|
|
|
vyos_command:
|
|
|
|
commands:
|
|
|
|
- show version
|
|
|
|
- show foo
|
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
|
|
|
|
- assert: { that: result.failed }
|
|
|
|
|
2017-12-13 20:30:24 +01:00
|
|
|
- debug: msg="END cli/invalid.yaml on connection={{ ansible_connection }}"
|