mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
444 B
YAML
18 lines
444 B
YAML
7 years ago
|
---
|
||
|
- debug: msg="START cli/misc_tests.yaml on connection={{ ansible_connection }}"
|
||
|
|
||
|
|
||
|
- block:
|
||
|
# Test that transport values are properly ignored
|
||
|
- name: wrong transport specified
|
||
|
eos_command:
|
||
|
commands: show version
|
||
|
transport: nxapi
|
||
|
|
||
|
- name: wrong transport specified in provider
|
||
|
eos_command:
|
||
|
commands: show version
|
||
|
provider: "{{ nxapi }}"
|
||
|
|
||
|
when: "ansible_connection != 'local'"
|