cnos_command – Run arbitrary commands on Lenovo CNOS devices¶
New in version 2.6.
Synopsis¶
- Sends arbitrary commands to an CNOS node and returns the results read from the device. The cnos_commandmodule 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.
Parameters¶
Examples¶
---
- name: test contains operator
  cnos_command:
    commands:
      - show version
      - show system memory
    wait_for:
      - "result[0] contains 'Lenovo'"
      - "result[1] contains 'MemFree'"
  register: result
- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"
- name: get output for single command
  cnos_command:
    commands: ['show version']
  register: result
- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"
- name: get output for multiple commands
  cnos_command:
    commands:
      - show version
      - show interface information
  register: result
- assert:
    that:
      - "result.changed == false"
      - "result.stdout is defined"
      - "result.stdout | length == 2"
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Status¶
- This module is not guaranteed to have a backwards compatible interface. [preview]
- This module is maintained by the Ansible Community. [community]
Authors¶
- Anil Kumar Muraleedharan (@amuraleedhar)
Hint
If you notice any issues in this documentation, you can edit this document to improve it.
