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 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 29