Setting the correct name for the fabric service

Change-Id: I24f70ea2362486bd753b7e49b02002b7055be6ac
(cherry picked from commit 9cc4f6f1ed51551cbd838a7b4bcad6cfefe87788)
diff --git a/xos/fabric.xproto b/xos/fabric.xproto
index e0d2d1a..8ecf614 100644
--- a/xos/fabric.xproto
+++ b/xos/fabric.xproto
@@ -1,7 +1,8 @@
 option app_label = "fabric";
-option verbose_name = "Fabric Service";
-option kind = "fabric";
+option name = "fabric";
 
 message FabricService(Service){
-     optional bool autoconfig = 1 [default = True, help_text="Autoconfigure the fabric", null=False];
+    option verbose_name = "Fabric Service";
+    
+    optional bool autoconfig = 1 [default = True, help_text="Autoconfigure the fabric", null=False];
 }