1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-06 01:55:51 +00:00
community.general/tests/integration/targets/exos_command/tests/common/single.yaml
Ansible Core Team aebc1b03fd Initial commit
2020-03-09 09:11:07 +00:00

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 }}"