Fix LED spec for Dell
This commit is contained in:
parent
f263885790
commit
4b20a722bd
|
@ -517,7 +517,7 @@ def set_indicator_state(session, system_root, redfish_vendor, state):
|
|||
state_values_write = {
|
||||
"Dell": {
|
||||
"on": "Blinking",
|
||||
"off": "Off",
|
||||
"off": "Lit",
|
||||
},
|
||||
"default": {
|
||||
"on": "Lit",
|
||||
|
@ -526,6 +526,10 @@ def set_indicator_state(session, system_root, redfish_vendor, state):
|
|||
}
|
||||
|
||||
state_values_read = {
|
||||
"Dell": {
|
||||
"on": "Blinking",
|
||||
"off": "Lit",
|
||||
},
|
||||
"default": {
|
||||
"on": "Lit",
|
||||
"off": "Off",
|
||||
|
|
Loading…
Reference in New Issue