1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

redfish: Add MACAddress property to GetNicInventory (#56864)

* add MACAddress property to GetNicInventory

* add changelog fragment
This commit is contained in:
Bill Dodd 2019-06-10 02:45:56 -05:00 committed by René Moser
parent 9151f343da
commit 7eae4761b8
2 changed files with 5 additions and 2 deletions

View file

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

View file

@ -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: