mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-10 11:11:29 -07:00
nxos_interface: Fix admin_state check for n6k (#55673)
* Fix admin_state check for n6k * Fix rx and tx_rate intent check test
This commit is contained in:
parent
a5b6a161b5
commit
bceca72eb7
2 changed files with 22 additions and 2 deletions
|
@ -573,6 +573,11 @@ def map_config_to_obj(want, module):
|
|||
elif intf_type in ('loopback', 'management', 'nve'):
|
||||
obj['name'] = normalize_interface(interface_table.get('interface'))
|
||||
obj['admin_state'] = interface_table.get('admin_state')
|
||||
if obj['admin_state'] is None and intf_type == 'loopback':
|
||||
# Some platforms don't have the 'admin_state' key.
|
||||
# For loopback interfaces it's safe to use the
|
||||
# 'state' key instead.
|
||||
obj['admin_state'] = interface_table.get('state')
|
||||
obj['description'] = interface_table.get('desc')
|
||||
|
||||
elif intf_type == 'portchannel':
|
||||
|
@ -581,6 +586,16 @@ def map_config_to_obj(want, module):
|
|||
obj['description'] = interface_table.get('desc')
|
||||
obj['mtu'] = interface_table.get('eth_mtu')
|
||||
|
||||
if obj['admin_state'] is None:
|
||||
# Some nxos platforms do not have the 'admin_state' key.
|
||||
# Use the 'state_rsn_desc' key instead to determine the
|
||||
# admin state of the interface.
|
||||
state_description = interface_table.get('state_rsn_desc')
|
||||
if state_description == 'Administratively down':
|
||||
obj['admin_state'] = 'down'
|
||||
elif state_description is not None:
|
||||
obj['admin_state'] = 'up'
|
||||
|
||||
objs.append(obj)
|
||||
|
||||
return objs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue