Enable local users in the authentication reset cmd

Along with resetting the password and disabling LDAP,
local users should also be enabled again so one can
ssh into the system with a local user account again.

This is accomplished by setting the UserEnabled property
on every user object.

Tested:  Saw users were enabled when running
         ipmitool raw 0x3a 0x11 from the host.

Change-Id: I5a313cf82e2596cb797b8b9431631a3fe4ffca8d
Signed-off-by: Matt Spinler <spinler@us.ibm.com>
diff --git a/oemhandler.cpp b/oemhandler.cpp
index 3f443f2..99081d7 100644
--- a/oemhandler.cpp
+++ b/oemhandler.cpp
@@ -1,6 +1,7 @@
 #include "oemhandler.hpp"
 #include "config.h"
 #include "elog-errors.hpp"
+#include "local_users.hpp"
 #include <host-ipmid/ipmid-api.h>
 #include <host-ipmid/ipmid-host-cmd.hpp>
 #include <fstream>
@@ -211,7 +212,11 @@
                                        ipmi_data_len_t data_len,
                                        ipmi_context_t context)
 {
-    return IPMI_CC_OK;
+    ipmi_ret_t rc;
+
+    rc = local::users::enableUsers();
+
+    return rc;
 }
 
 namespace {