build: install into bin instead of sbin

Installs into bin instead of sbin per guidelines.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: I049a33c7102d97110cf5ccf13fec1ad694e33246
diff --git a/CMakeLists.txt b/CMakeLists.txt
index abd9fe0..0605dd9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -122,7 +122,7 @@
 
 set (PACKAGE_DIR /usr/share/entity-manager/)
 target_compile_definitions (entity-manager PRIVATE PACKAGE_DIR="${PACKAGE_DIR}")
-install (TARGETS fru-device entity-manager DESTINATION sbin)
+install (TARGETS fru-device entity-manager DESTINATION bin)
 install (DIRECTORY configurations DESTINATION ${PACKAGE_DIR})
 install (DIRECTORY overlay_templates DESTINATION ${PACKAGE_DIR})
 install (DIRECTORY schemas DESTINATION ${PACKAGE_DIR}/configurations)
diff --git a/service_files/xyz.openbmc_project.EntityManager.service b/service_files/xyz.openbmc_project.EntityManager.service
index 815ba8b..651b0f2 100644
--- a/service_files/xyz.openbmc_project.EntityManager.service
+++ b/service_files/xyz.openbmc_project.EntityManager.service
@@ -5,7 +5,7 @@
 [Service]
 ExecStartPre=/bin/mkdir -p /var/configuration
 ExecStartPre=/bin/mkdir -p /tmp/overlays
-ExecStart=/usr/sbin/entity-manager
+ExecStart=/usr/bin/entity-manager
 Restart=always
 Type=simple
 
diff --git a/service_files/xyz.openbmc_project.FruDevice.service b/service_files/xyz.openbmc_project.FruDevice.service
index 3f2ad35..cf4e5e9 100644
--- a/service_files/xyz.openbmc_project.FruDevice.service
+++ b/service_files/xyz.openbmc_project.FruDevice.service
@@ -4,7 +4,7 @@
 After=xyz.openbmc_project.CloseMuxes.service dbus.service
 
 [Service]
-ExecStart=/usr/sbin/fru-device
+ExecStart=/usr/bin/fru-device
 Type=simple
 
 [Install]