mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
* adding the desired state config to the new vrf fixes #32111 * fix default vrf initial configured * add unit test
This commit is contained in:
parent
4faf4ff215
commit
2c99cbc874
2 changed files with 13 additions and 2 deletions
|
@ -260,11 +260,17 @@ def map_obj_to_commands(updates, module, warnings):
|
||||||
else:
|
else:
|
||||||
add('protocol unix-socket')
|
add('protocol unix-socket')
|
||||||
|
|
||||||
|
if needs_update('state') and not needs_update('vrf'):
|
||||||
|
if want['state'] == 'stopped':
|
||||||
|
add('shutdown')
|
||||||
|
elif want['state'] == 'started':
|
||||||
|
add('no shutdown')
|
||||||
|
|
||||||
|
|
||||||
if needs_update('vrf'):
|
if needs_update('vrf'):
|
||||||
add('vrf %s' % want['vrf'])
|
add('vrf %s' % want['vrf'])
|
||||||
|
# switching operational vrfs here
|
||||||
if needs_update('state'):
|
# need to add the desired state as well
|
||||||
if want['state'] == 'stopped':
|
if want['state'] == 'stopped':
|
||||||
add('shutdown')
|
add('shutdown')
|
||||||
elif want['state'] == 'started':
|
elif want['state'] == 'started':
|
||||||
|
|
|
@ -134,6 +134,11 @@ class TestEosEapiModule(TestEosModule):
|
||||||
commands = ['management api http-commands', 'vrf test', 'no shutdown']
|
commands = ['management api http-commands', 'vrf test', 'no shutdown']
|
||||||
self.start_unconfigured(changed=True, commands=commands)
|
self.start_unconfigured(changed=True, commands=commands)
|
||||||
|
|
||||||
|
def test_eos_eapi_change_from_default_vrf(self):
|
||||||
|
set_module_args(dict(vrf='test'))
|
||||||
|
commands = ['management api http-commands', 'vrf test', 'no shutdown']
|
||||||
|
self.start_configured(changed=True, commands=commands)
|
||||||
|
|
||||||
def test_eos_eapi_vrf_missing(self):
|
def test_eos_eapi_vrf_missing(self):
|
||||||
set_module_args(dict(vrf='missing'))
|
set_module_args(dict(vrf='missing'))
|
||||||
self.start_unconfigured(failed=True)
|
self.start_unconfigured(failed=True)
|
||||||
|
|
Loading…
Reference in a new issue