Adhere to freedesktop naming convention for service and object path

Fixes openbmc/openbmc#1039

Change-Id: I995168828a187671072f761668c873c2b1936874
Signed-off-by: Vishwanatha Subbanna <vishwa@linux.vnet.ibm.com>
diff --git a/configure.ac b/configure.ac
index 9fd3720..0286aa6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -49,13 +49,13 @@
 
 # Dbus service name
 AC_ARG_VAR(BUSNAME, [The Dbus busname to own])
-AS_IF([test "x$BUSNAME" == "x"], [BUSNAME="xyz.openbmc_project.ledmanager"])
+AS_IF([test "x$BUSNAME" == "x"], [BUSNAME="xyz.openbmc_project.LED.GroupManager"])
 AC_DEFINE_UNQUOTED([BUSNAME], ["$BUSNAME"], [The Dbus busname to own])
 
 # Service dbus root
-AC_ARG_VAR(OBJPATH, [The Ledmanager Dbus root])
-AS_IF([test "x$OBJPATH" == "x"], [OBJPATH="/xyz/openbmc_project/ledmanager/groups"])
-AC_DEFINE_UNQUOTED([OBJPATH], ["$OBJPATH"], [The Ledmanager Dbus root])
+AC_ARG_VAR(OBJPATH, [The LED group Dbus root])
+AS_IF([test "x$OBJPATH" == "x"], [OBJPATH="/xyz/openbmc_project/led/groups"])
+AC_DEFINE_UNQUOTED([OBJPATH], ["$OBJPATH"], [The LED group Dbus root])
 
 # Handling configuration files
 AC_ARG_VAR(YAML_PATH, [The path to the yaml config files.])
diff --git a/parse_led.py b/parse_led.py
index 552ad67..af81d62 100755
--- a/parse_led.py
+++ b/parse_led.py
@@ -49,7 +49,7 @@
             ledset = ifile[group]
             ofile.write(
                 '   {\"' +
-                "/xyz/openbmc_project/ledmanager/groups/" +
+                "/xyz/openbmc_project/led/groups/" +
                 group +
                 '\",{\n')