You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/nxos_nxapi/tests/cli/disable.yaml

32 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"