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
41 lines
827 B
YAML
41 lines
827 B
YAML
---
|
|
- debug: msg="START nxapi/mulitlevel.yaml"
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines: feature bgp
|
|
match: none
|
|
|
|
- name: configure multi level command
|
|
nxos_config:
|
|
lines: maximum-paths 14
|
|
parents:
|
|
- router bgp 1
|
|
- address-family ipv4 unicast
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == true"
|
|
- "'router bgp 1' in result.updates"
|
|
- "'address-family ipv4 unicast' in result.updates"
|
|
- "'maximum-paths 14' in result.updates"
|
|
|
|
- name: test multi level command
|
|
nxos_config:
|
|
lines: maximum-paths 14
|
|
parents:
|
|
- router bgp 1
|
|
- address-family ipv4 unicast
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown
|
|
nxos_config:
|
|
lines: no feature bgp
|
|
match: none
|
|
|
|
- debug: msg="END nxapi/mulitlevel.yaml"
|