mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-21 01:41:25 -07:00
Merge 781d21bc9a
into 70b5e362f9
This commit is contained in:
commit
696988d8c3
2 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue