oemcommands: Fix for status LED when Solidgreen

Issue: GetLEDStatus command showing wrong response

Fix: Changed actionDbusToIpmi map value for Action on

Tested:
After complete reboot of server, verified the statusLED status
showing as solid green
Command : ipmitool raw 0x30 0xB0 //Get LED status
Response: 00 20   //solidgreen

Signed-off-by: jayaprakash Mutyala <mutyalax.jayaprakash@intel.com>
Change-Id: Iad7c102daa501e66126989c3249a71a57bbcad6d
diff --git a/src/oemcommands.cpp b/src/oemcommands.cpp
index 9980397..5cf91af 100644
--- a/src/oemcommands.cpp
+++ b/src/oemcommands.cpp
@@ -1212,9 +1212,9 @@
 {
 using namespace sdbusplus::xyz::openbmc_project::Led::server;
 std::map<Physical::Action, uint8_t> actionDbusToIpmi = {
-    {Physical::Action::Off, 0x00},
-    {Physical::Action::On, 0x10},
-    {Physical::Action::Blink, 0x01}};
+    {Physical::Action::Off, 0},
+    {Physical::Action::On, 2},
+    {Physical::Action::Blink, 1}};
 
 std::map<uint8_t, std::string> offsetObjPath = {
     {2, statusAmberObjPath}, {4, statusGreenObjPath}, {6, identifyLEDObjPath}};