blob: c48017c92bd9441e3c2fd9ae05f65f9177133ffa [file] [log] [blame]
Sridevi Ramesh3ed96342018-01-15 05:14:37 -06001*** Settings ***
2Documentation Set metadata for test suite.
3
4Library SSHLibrary
George Keishingbba33902018-06-06 13:39:27 -05005Resource ../../lib/connection_client.robot
6Resource ../../lib/rest_client.robot
7Resource ../../lib/utils.robot
8Resource ../../lib/code_update_utils.robot
Sridevi Ramesh3ed96342018-01-15 05:14:37 -06009
10Suite Setup Log System Driver Data
11
12*** Keyword ***
13
14Log System Driver Data
15 [Documentation] Log system driver information.
16
17 Open Connection And Log In
18 ${output} ${stderr}= Execute Command grep ^VERSION_ID= /etc/os-release
19 ... return_stderr=True
20 Should Be Empty ${stderr}
21 Log ${output}
22
23 ${software}= Get Host Software Objects Details
24 Log ${software}
25
26 ${bmc_model}= Get BMC System Model
27 Log BMC Model=${bmc_model}
28