redfish: Add MACAddress property to GetNicInventory (#56864)

* add MACAddress property to GetNicInventory

* add changelog fragment
pull/57036/head
Bill Dodd 5 years ago committed by René Moser
parent 9151f343da
commit 7eae4761b8

@ -0,0 +1,3 @@
---
bugfixes:
- redfish_facts - add MACAddress to properties fetched by Redfish GetNicInventory command

@ -1365,8 +1365,8 @@ class RedfishUtils(object):
key = "EthernetInterfaces"
# Get these entries, but does not fail if not found
properties = ['Description', 'FQDN', 'IPv4Addresses', 'IPv6Addresses',
'NameServers', 'PermanentMACAddress', 'SpeedMbps', 'MTUSize',
'AutoNeg', 'Status']
'NameServers', 'MACAddress', 'PermanentMACAddress',
'SpeedMbps', 'MTUSize', 'AutoNeg', 'Status']
response = self.get_request(self.root_uri + resource_uri)
if response['ret'] is False:

Loading…
Cancel
Save