15 lines
357 B
YAML
15 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 }}"
|