1*** Settings *** 2Documentation This file includes all the variables 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 boot we're currently doing - used in the FOR loop. 9${BOOT_COUNT} ${0} 10 11# The status of the last boots that finished 12${BOOT_STATUS} ${EMPTY} 13 14# A list of the last 10 boots that have been performed (see Log Last Ten) 15@{LAST_TEN} 16 17# A list of keywords of valid boots that can be performed 18@{VALID_POWER_ON} BMC Power On 19@{VALID_POWER_OFF} BMC Power Off 20#@{VALID_ACCYCLE} 21#@{VALID_REBOOT} 22 23# The master list of all boots possible, for reference. (Currently not in use). 24@{MASTER_BOOT_LIST} BMC Power On BMC Power Off 25 26# The list of available boots - Modifying this will limit what boots can be done. 27# This list is also used by: Setup Run Table, Log Run Table 28@{AVAIL_BOOTS} BMC Power On BMC Power Off 29