f872c61712
- exos_facts - exos_command - exos_config
14 lines
357 B
YAML
14 lines
357 B
YAML
---
|
|
- debug: msg="START common/single.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: run show version on remote devices
|
|
exos_command:
|
|
commands: show version
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
- "result.stdout is defined"
|
|
|
|
- debug: msg="END common/single.yaml on connection={{ ansible_connection }}"
|