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