19 lines
373 B
YAML
19 lines
373 B
YAML
---
|
|
|
|
- name: Test playbook - reads and prints device info
|
|
hosts: baguleykit
|
|
gather_facts: false
|
|
connection: network_cli
|
|
roles:
|
|
- common
|
|
|
|
tasks:
|
|
|
|
- name: Run "show version" command on devices
|
|
ios_command:
|
|
commands: show version
|
|
register: output
|
|
|
|
- name: Print the output of "show version"
|
|
debug:
|
|
var: output.stdout_lines |