* nxos_integration_tests: Removing obsolete provider parameter * nxos: removing support for local-nxapi plugin * nxos: removing LocalNxapi plugin implementation * nxos_nxapi: removing local plugin usage * REVERT - nxos: removing LocalNxapi plugin implementation * Addressing yamllint issues * Removing the condition on the debug messages * Restoring changes done to nxos_nxapi* tests * Retaining timeout of 500 on nxos_smoke test * Some cleanup * Addressing latest comments * Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
33 lines
673 B
YAML
33 lines
673 B
YAML
---
|
|
- debug: msg='START common/toplevel.yaml on connection={{ ansible_connection }}'
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
|
|
- name: configure top level command
|
|
nxos_config:
|
|
lines: hostname foo
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
|
|
- name: configure top level command idempotent check
|
|
nxos_config:
|
|
lines: hostname foo
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
nxos_config:
|
|
lines: hostname switch
|
|
match: none
|
|
|
|
- debug: msg='END common/toplevel.yaml on connection={{ ansible_connection }}'
|