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.
25 lines
595 B
YAML
25 lines
595 B
YAML
7 years ago
|
---
|
||
|
- debug: msg="START connection={{ ansible_connection }} common/misc_tests.yaml"
|
||
|
- debug: msg="Using provider={{ connection.transport }}"
|
||
|
when: ansible_connection == "local"
|
||
|
|
||
|
- name: hit conditional for lists of 10 or more commands
|
||
|
nxos_command:
|
||
|
commands:
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
- show hostname
|
||
|
provider: "{{ connection }}"
|
||
|
register: result
|
||
|
|
||
|
- assert:
|
||
|
that:
|
||
|
- result.stdout|length == 10
|