community.network.voss_command – Run commands on remote devices running Extreme VOSS¶
Note
This plugin is part of the community.network collection (version 2.1.1).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.voss_command
.
Synopsis¶
Sends arbitrary commands to an Extreme VSP device running VOSS, and returns the results read from the device. This module includes an argument that will cause the module to wait for a specific condition before returning or timing out if the condition is not met.
This module does not support running commands in configuration mode. Please use community.network.voss_config to configure VOSS devices.
Parameters¶
Examples¶
tasks:
- name: Run show sys software on remote devices
community.network.voss_command:
commands: show sys software
- name: Run show sys software and check to see if output contains VOSS
community.network.voss_command:
commands: show sys software
wait_for: result[0] contains VOSS
- name: Run multiple commands on remote nodes
community.network.voss_command:
commands:
- show sys software
- show interfaces vlan
- name: Run multiple commands and evaluate the output
community.network.voss_command:
commands:
- show sys software
- show interfaces vlan
wait_for:
- result[0] contains Version
- result[1] contains Basic
- name: Run command that requires answering a prompt
community.network.voss_command:
commands:
- command: 'reset'
prompt: 'Are you sure you want to reset the switch? (y/n)'
answer: 'y'
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Lindsay Hill (@LindsayHill)