mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 10:10:31 -07:00
Merge 781d21bc9a
into 70b5e362f9
This commit is contained in:
commit
696988d8c3
2 changed files with 7 additions and 0 deletions
|
@ -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).
|
|
@ -2814,6 +2814,11 @@ class RedfishUtils(object):
|
||||||
if (not data.get('Inserted', False) and
|
if (not data.get('Inserted', False) and
|
||||||
not data.get('ImageName')):
|
not data.get('ImageName')):
|
||||||
return uri, data
|
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
|
return None, None
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
|
|
Loading…
Add table
Reference in a new issue