483df13626
* I seem to have forgotten the back half of tests * Set http timeout from persistent_command_timeout * Tweak URL generation and provide URL on error * Push var_options to connection process * Don't wait forever if coming from persistent * Don't send the entire contents of variables to ansible-connection
34 lines
600 B
YAML
34 lines
600 B
YAML
---
|
|
- debug: msg="START cli/enable.yaml"
|
|
|
|
- name: Setup - put NXAPI in stopped state
|
|
nxos_nxapi:
|
|
state: absent
|
|
register: result
|
|
|
|
- name: Enable NXAPI
|
|
nxos_nxapi:
|
|
state: present
|
|
register: result
|
|
|
|
- name: Check NXAPI state
|
|
nxos_command:
|
|
commands:
|
|
- show feature | grep nxapi
|
|
register: result
|
|
|
|
- name: Assert NXAPI is enabled
|
|
assert:
|
|
that: result.stdout[0] is search('enabled')
|
|
|
|
- name: Enable NXAPI again
|
|
nxos_nxapi:
|
|
register: result
|
|
|
|
- name: Assert idempotence
|
|
assert:
|
|
that:
|
|
result.changed == false
|
|
|
|
|
|
- debug: msg="END cli/enable.yaml"
|