c5d0b15160
* Update nxos tests that got missed in the first pass * Add setup for setting interfaces to layer2
29 lines
642 B
YAML
29 lines
642 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }}/negative.yaml"
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
when: ansible_connection == "local"
|
|
|
|
- name: run 11 commands
|
|
nxos_command:
|
|
commands:
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
- show version
|
|
provier: "{{ connection }}"
|
|
ignore_errors: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- result.failed
|
|
|
|
|
|
- debug: msg="END connection={{ ansible_connection }}/negative.yaml"
|