01e4c41be4
* 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
40 lines
852 B
YAML
40 lines
852 B
YAML
---
|
|
- debug: msg="START nxapi/toplevel_after.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines:
|
|
- "snmp-server contact ansible"
|
|
- "hostname switch"
|
|
match: none
|
|
|
|
- name: configure top level command with before
|
|
nxos_config:
|
|
lines: hostname foo
|
|
after: snmp-server contact bar
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'hostname foo' in result.updates"
|
|
- "'snmp-server contact bar' in result.updates"
|
|
|
|
- name: configure top level command with before idempotent check
|
|
nxos_config:
|
|
lines: hostname foo
|
|
after: snmp-server contact foo
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
nxos_config:
|
|
lines:
|
|
- "no snmp-server contact ansible"
|
|
- "hostname switch"
|
|
match: none
|
|
|
|
- debug: msg="END nxapi/toplevel_after.yaml"
|