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*** Keywords ***
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    ${bmc_model}=  Get BMC System Model
21    Log  BMC Model=${bmc_model}
22
23Log BMC Driver Details
24    [Documentation]  Get BMC driver details and log.
25
26    ${output}  ${stderr}=  Execute Command  grep ^VERSION_ID= /etc/os-release
27    ...  return_stderr=True
28    Should Be Empty  ${stderr}
29    Log  ${output}
30
31