__init__.robot for xcat suite

Purpose is to get the meta data for xcat suite logged in output.xml.

Change-Id: I58937dd615386412adeccc2072bf4533a53d12ae
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
diff --git a/xcat/__init__.robot b/xcat/__init__.robot
new file mode 100755
index 0000000..55b2776
--- /dev/null
+++ b/xcat/__init__.robot
@@ -0,0 +1,28 @@
+*** Settings ***
+Documentation  Set metadata for test suite.
+
+Library          SSHLibrary
+Resource         ../lib/connection_client.robot
+Resource         ../lib/rest_client.robot
+Resource         ../lib/utils.robot
+Resource         ../lib/code_update_utils.robot
+
+Suite Setup      Log System Driver Data
+
+*** Keyword ***
+
+Log System Driver Data
+    [Documentation]  Log system driver information.
+
+    Open Connection And Log In
+    ${output}  ${stderr}=  Execute Command  grep ^VERSION_ID= /etc/os-release
+    ...  return_stderr=True
+    Should Be Empty  ${stderr}
+    Log  ${output}
+
+    ${software}=  Get Host Software Objects Details
+    Log  ${software}
+
+    ${bmc_model}=  Get BMC System Model
+    Log  BMC Model=${bmc_model}
+