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
31 lines
527 B
YAML
31 lines
527 B
YAML
---
|
|
- debug: msg="START cli/disable.yaml"
|
|
|
|
- name: Disable NXAPI
|
|
nxos_nxapi:
|
|
state: absent
|
|
register: result
|
|
|
|
- name: Check NXAPI state
|
|
nxos_command:
|
|
commands:
|
|
- show feature | grep nxapi
|
|
register: result
|
|
|
|
- name: Assert NXAPI is disabled
|
|
assert:
|
|
that:
|
|
result.stdout[0] is search('disabled')
|
|
|
|
- name: Disable NXAPI again
|
|
nxos_nxapi:
|
|
state:
|
|
absent
|
|
register: result
|
|
|
|
- name: Assert idempotence
|
|
assert:
|
|
that:
|
|
result.changed == false
|
|
|
|
- debug: msg="END cli/disable.yaml"
|