Fix LED spec for Dell

This commit is contained in:
Joshua Boniface 2022-07-06 16:58:35 +00:00
parent f263885790
commit 4b20a722bd
1 changed files with 5 additions and 1 deletions

View File

@ -517,7 +517,7 @@ def set_indicator_state(session, system_root, redfish_vendor, state):
state_values_write = { state_values_write = {
"Dell": { "Dell": {
"on": "Blinking", "on": "Blinking",
"off": "Off", "off": "Lit",
}, },
"default": { "default": {
"on": "Lit", "on": "Lit",
@ -526,6 +526,10 @@ def set_indicator_state(session, system_root, redfish_vendor, state):
} }
state_values_read = { state_values_read = {
"Dell": {
"on": "Blinking",
"off": "Lit",
},
"default": { "default": {
"on": "Lit", "on": "Lit",
"off": "Off", "off": "Off",