diff --git a/changelogs/fragments/6969-redfish-supermicro-virtual-media-discover-empty-workaround.yml b/changelogs/fragments/6969-redfish-supermicro-virtual-media-discover-empty-workaround.yml new file mode 100644 index 0000000000..0a58e218ff --- /dev/null +++ b/changelogs/fragments/6969-redfish-supermicro-virtual-media-discover-empty-workaround.yml @@ -0,0 +1,2 @@ +bugfixes: + - redfish_command - add workaround in ``VirtualMediaInsert`` for Supermicro systems to treat slots marked as ``NotConnected`` as empty (https://github.com/ansible-collections/community.general/issues/6969, https://github.com/ansible-collections/community.general/pull/7470). diff --git a/plugins/module_utils/redfish_utils.py b/plugins/module_utils/redfish_utils.py index f4e8cd5a36..2ca6ddb870 100644 --- a/plugins/module_utils/redfish_utils.py +++ b/plugins/module_utils/redfish_utils.py @@ -2814,6 +2814,11 @@ class RedfishUtils(object): if (not data.get('Inserted', False) and not data.get('ImageName')): return uri, data + # WORKAROUND + # Supermicro systems do not properly clear out ImageName when media is ejected + if vendor == 'Supermicro': + if data.get('ConnectedVia') == 'NotConnected': + return uri, data return None, None @staticmethod