e9d7fa0418
* HTTPAPI connection * Punt run_commands to cliconf or httpapi * Fake enable_mode on eapi * Pull changes to nxos * Move load_config to edit_config for future-preparedness * Don't fail on lldp disabled * Re-enable check_rc on nxos' run_commands * Reorganize nxos httpapi plugin for compatibility * draft docs for connection: httpapi * restores docs for connection:local for eapi * Add _remote_is_local to httpapi
52 lines
1 KiB
YAML
52 lines
1 KiB
YAML
---
|
|
- debug: msg="START cli/mulitlevel.yaml"
|
|
|
|
- name: get config
|
|
nxos_command:
|
|
commands: show running-config
|
|
register: config
|
|
|
|
- name: enable feature bgp
|
|
nxos_config:
|
|
lines: feature bgp
|
|
when: "'feature bgp' not in config.stdout[0]"
|
|
|
|
- name: remove bgp
|
|
nxos_config:
|
|
lines: no router bgp 1
|
|
when: "'router bgp 1' in config.stdout[0]"
|
|
|
|
- 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: check 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 cli/mulitlevel.yaml"
|