mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
* nxos_interfaces_ospf: fix passive-interface states & check_mode
This fix addresses issues #41704 and #45343.
The crux of the problem is that `passive-interface` should have been treated as a tri-state value instead of a boolean.
The `no` form of the command disables the passive state on an interface (allows it to form adjacencies and send routing updates). It's essentially an override for `passive-interface default` which enables passive state on all OSPF interfaces.\*
This `no` config will be present in `running-config`.
\**See `router ospf` configuration.*
Since both enable and disable states are explicit configs, the proper way to remove either of these is with the `default` syntax.
Passive-interface config syntax:
```
ip ospf passive-interface # enable (nvgens)
no ip ospf passive-interface # disable (nvgens)
default ip ospf passive-interface # default (removes config, does not nvgen)
```
Code changes:
* `passive_interface` param changed from boolean to string, restricted to `true`,`false`,`default`.
* Several passive-interface specific checks were added because the existing module logic tends to test for true or false and doesn't handle the None case.
* Fixed `check_mode`.
Sanity verified on: N9K,N7K,N3K,N6K
* Fix doc header
* Unit tests for passive-interface
* doc fix #2
* Fix indent for SA
* Remove 'default' keyword, restore bool behavior
* remove changes to sanity
(cherry picked from commit
|
7 years ago | |
|---|---|---|
| .. | ||
| fixtures | 7 years ago | |
| __init__.py | 9 years ago | |
| nxos_module.py | 7 years ago | |
| test_nxos_acl.py | 8 years ago | |
| test_nxos_acl_interface.py | 8 years ago | |
| test_nxos_banner.py | 8 years ago | |
| test_nxos_bgp.py | 8 years ago | |
| test_nxos_bgp_af.py | 8 years ago | |
| test_nxos_bgp_neighbor.py | 8 years ago | |
| test_nxos_bgp_neighbor_af.py | 8 years ago | |
| test_nxos_command.py | 8 years ago | |
| test_nxos_config.py | 7 years ago | |
| test_nxos_evpn_global.py | 8 years ago | |
| test_nxos_evpn_vni.py | 8 years ago | |
| test_nxos_feature.py | 8 years ago | |
| test_nxos_hsrp.py | 8 years ago | |
| test_nxos_interface.py | 8 years ago | |
| test_nxos_interface_ospf.py | 7 years ago | |
| test_nxos_ip_interface.py | 8 years ago | |
| test_nxos_nxapi.py | 7 years ago | |
| test_nxos_ospf.py | 8 years ago | |
| test_nxos_ospf_vrf.py | 8 years ago | |
| test_nxos_overlay_global.py | 8 years ago | |
| test_nxos_pim.py | 8 years ago | |
| test_nxos_pim_interface.py | 8 years ago | |
| test_nxos_pim_rp_address.py | 8 years ago | |
| test_nxos_portchannel.py | 8 years ago | |
| test_nxos_static_route.py | 8 years ago | |
| test_nxos_switchport.py | 8 years ago | |
| test_nxos_system.py | 8 years ago | |
| test_nxos_vlan.py | 7 years ago | |
| test_nxos_vpc.py | 8 years ago | |
| test_nxos_vpc_interface.py | 8 years ago | |
| test_nxos_vrf.py | 8 years ago | |
| test_nxos_vrf_af.py | 8 years ago | |
| test_nxos_vxlan_vtep.py | 8 years ago | |
| test_nxos_vxlan_vtep_vni.py | 8 years ago | |