1---
2- debug: msg="START common/multiple.yaml on connection={{ ansible_connection }}"
3
4- name: run multiple commands on remote nodes
5  exos_command:
6    commands:
7      - show version
8      - show ports no-refresh
9  register: result
10
11- assert:
12    that:
13      - "result.changed == false"
14      - "result.stdout is defined"
15
16- debug: msg="END common/multiple.yaml on connection={{ ansible_connection }}"
17