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/configure.ac b/configure.ac
index a3c158a..dcf3b5f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -69,6 +69,15 @@
[CONTROL_HOST_OBJ_MGR="/org/open_power/control"])
AC_DEFINE_UNQUOTED([CONTROL_HOST_OBJ_MGR], ["$CONTROL_HOST_OBJ_MGR"], [The Control Host D-Bus Object Manager])
+AC_DEFINE(MAPPER_BUS_NAME, "xyz.openbmc_project.ObjectMapper",
+ [The object mapper bus name])
+
+AC_DEFINE(MAPPER_OBJ, "/xyz/openbmc_project/object_mapper",
+ [The object mapper object path])
+
+AC_DEFINE(MAPPER_IFACE, "xyz.openbmc_project.ObjectMapper",
+ [The object mapper interface])
+
# Create configured output.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT