George Keishing | 789ad7d | 2017-12-08 00:39:13 -0600 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Documentation Set metadata for test suite. |
| 3 | |
| 4 | Library SSHLibrary |
| 5 | Resource ../lib/connection_client.robot |
| 6 | Resource ../lib/rest_client.robot |
| 7 | Resource ../lib/utils.robot |
| 8 | Resource ../lib/code_update_utils.robot |
| 9 | |
| 10 | Suite Setup Log System Driver Data |
| 11 | |
| 12 | *** Keyword *** |
| 13 | |
| 14 | Log 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 | |