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 = {
|
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",
|
||||||
|
|
Loading…
Reference in New Issue