community.network.exos_command – Run commands on remote devices running Extreme EXOS¶
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.exos_command
.
Synopsis¶
Sends arbitrary commands to an Extreme EXOS device 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 configuration commands. Please use community.network.exos_config to configure EXOS devices.
Parameters¶
Notes¶
Note
If a command sent to the device requires answering a prompt, it is possible to pass a dict containing command, answer and prompt. See examples.
Examples¶
tasks:
- name: Run show version on remote devices
community.network.exos_command:
commands: show version
- name: Run show version and check to see if output contains ExtremeXOS
community.network.exos_command:
commands: show version
wait_for: result[0] contains ExtremeXOS
- name: Run multiple commands on remote nodes
community.network.exos_command:
commands:
- show version
- show ports no-refresh
- name: Run multiple commands and evaluate the output
community.network.exos_command:
commands:
- show version
- show ports no-refresh
wait_for:
- result[0] contains ExtremeXOS
- result[1] contains 20
- name: Run command that requires answering a prompt
community.network.exos_command:
commands:
- command: 'clear license-info'
prompt: 'Are you sure.*'
answer: 'Yes'
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Authors¶
Rafael D. Vencioneck (@rdvencioneck)