blob: 7f0f47351315c8974f84320430a8a5abece3c6dc [file] [log] [blame]
George Keishinga25396c2017-10-24 05:35:46 -05001*** 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