fix eos_l2_interface invalid command (#50644)
Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
(cherry picked from commit 1400d161c0
)
This commit is contained in:
parent
5d73a98000
commit
49d6a18343
1 changed files with 2 additions and 2 deletions
|
@ -176,9 +176,9 @@ def map_obj_to_commands(updates, module):
|
|||
commands.append('switchport trunk allowed vlan {0}'.format(trunk_allowed_vlans))
|
||||
else:
|
||||
if obj_in_have['native_vlan']:
|
||||
commands.append('not switchport trunk native vlan {0}'.format(obj_in_have['native_vlan']))
|
||||
commands.append('no switchport trunk native vlan {0}'.format(obj_in_have['native_vlan']))
|
||||
if obj_in_have['trunk_allowed_vlans']:
|
||||
commands.append('not switchport trunk allowed vlan {0}'.format(obj_in_have['trunk_allowed_vlans']))
|
||||
commands.append('no switchport trunk allowed vlan {0}'.format(obj_in_have['trunk_allowed_vlans']))
|
||||
commands.append('switchport access vlan {0}'.format(access_vlan))
|
||||
else:
|
||||
if mode == 'access':
|
||||
|
|
Loading…
Reference in a new issue