684e953b50
* * adds commit replace with config file for iosxr * fixes dci failure in iosxr_logging * * review comment changes
26 lines
614 B
YAML
26 lines
614 B
YAML
---
|
|
- debug: msg="START cli/invalid.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: run invalid command
|
|
iosxr_command:
|
|
commands: {command: 'show foo', prompt: 'fooprompt', answer: 'yes'}
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed"
|
|
|
|
- name: run commands that include invalid command
|
|
iosxr_command:
|
|
commands:
|
|
- show version
|
|
- {command: 'show foo', prompt: 'fooprompt', answer: 'yes'}
|
|
register: result
|
|
ignore_errors: yes
|
|
|
|
- assert:
|
|
that:
|
|
- "result.failed"
|
|
|
|
- debug: msg="END cli/invalid.yaml on connection={{ ansible_connection }}"
|