mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 05:42:50 +00:00
Add ospf net type (#45904)
* Added ospf network type option to nxos_interface_ospf module * Added documentation and example for the 'network' parameter * adding version
This commit is contained in:
@@ -54,3 +54,5 @@ class TestNxosInterfaceOspfModule(TestNxosModule):
|
||||
def test_loopback_interface_failed(self):
|
||||
set_module_args(dict(interface='loopback0', ospf=1, area=0, passive_interface=True))
|
||||
self.execute_module(failed=True, changed=False)
|
||||
set_module_args(dict(interface='loopback0', ospf=1, area=0, network='broadcast'))
|
||||
self.execute_module(failed=True, changed=False)
|
||||
|
||||
Reference in New Issue
Block a user