1*** Settings ***
2Documentation  Set metadata for test suite.
3
4Library          SSHLibrary
5Resource         ../lib/connection_client.robot
6Resource         ../lib/rest_client.robot
7Resource         ../lib/utils.robot
8Resource         ../lib/code_update_utils.robot
9
10Suite Setup      System Driver Data
11
12*** Keyword ***
13
14System Driver Data
15    [Documentation]  System driver information.
16    Open Connection And Log In
17    Log BMC Driver Details
18    ${software}=  Get Host Software Objects Details
19    Log  ${software}
20    Log BMC Model
21    ${bmc_model}=  Get BMC System Model
22    Log  BMC Model=${bmc_model}
23
24Log BMC Driver Details
25    [Documentation]  Get BMC driver details and log.
26
27    ${output}  ${stderr}=  Execute Command  grep ^VERSION_ID= /etc/os-release
28    ...  return_stderr=True
29    Should Be Empty  ${stderr}
30    Log  ${output}
31
32