1*** Settings *** 2Documentation This file includes all the varaibles used by obmc_boot_test.robot 3 4*** Variables *** 5# Alias of the master connection to the BMC 6${master_alias} master 7 8# The count of the IPL we're currently doing - used in the FOR loop 9${IPL_COUNT} ${0} 10 11# The total number of IPLs we plan on doing 12${IPL_TOTAL} ${3} 13 14# The total number of IPLs that have passed and failed 15${IPL_PASSED} ${0} 16${IPL_FAILED} ${0} 17 18# The status of the last IPL that finished 19${IPL_STATUS} ${EMPTY} 20 21# A list of the last 10 IPLs that have been performed (see Log Last Ten) 22@{LAST_TEN} 23 24# A list of keywords of valid IPLs that can be performed 25@{VALID_POWER_ON} BMC Power On 26@{VALID_POWER_OFF} BMC Power Off 27#@{VALID_ACCYCLE} 28#@{VALID_REBOOT} 29 30# The master list of all IPLs possible, for reference. (Currently not in use). 31@{MASTER_IPL_LIST} BMC Power On BMC Power Off 32 33# The list of available IPLs - Modifying this will limit what IPLs can be done. 34# This list is also used by: Setup Run Table, Log Run Table 35@{AVAIL_IPLS} BMC Power On BMC Power Off 36