2016-10-28 20:50:29 +02:00
|
|
|
---
|
|
|
|
- debug: msg="START nxapi/mulitlevel.yaml"
|
|
|
|
|
|
|
|
- name: setup
|
|
|
|
nxos_config:
|
|
|
|
lines: feature bgp
|
2017-02-25 22:36:00 +01:00
|
|
|
match: none
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- name: configure multi level command
|
|
|
|
nxos_config:
|
|
|
|
lines: maximum-paths 14
|
|
|
|
parents:
|
|
|
|
- router bgp 1
|
|
|
|
- address-family ipv4 unicast
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
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
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- "result.changed == false"
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
nxos_config:
|
|
|
|
lines: no feature bgp
|
|
|
|
match: none
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2016-10-28 20:50:29 +02:00
|
|
|
|
|
|
|
- debug: msg="END nxapi/mulitlevel.yaml"
|