mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00: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:
committed by
Ganesh Nalawade
parent
4faf4ff215
commit
2c99cbc874
@@ -260,11 +260,17 @@ def map_obj_to_commands(updates, module, warnings):
|
||||
else:
|
||||
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'):
|
||||
add('vrf %s' % want['vrf'])
|
||||
|
||||
if needs_update('state'):
|
||||
# switching operational vrfs here
|
||||
# need to add the desired state as well
|
||||
if want['state'] == 'stopped':
|
||||
add('shutdown')
|
||||
elif want['state'] == 'started':
|
||||
|
||||
Reference in New Issue
Block a user