Fix a typo in haproxy.pp

TrivialFix

Change-Id: I2cb637bc28b7cc4299ce6b96cdcece50d29da8b2
This commit is contained in:
gengchc2 2017-01-03 15:10:21 +08:00 committed by Kirill Zaitsev
parent 98efb8b507
commit 141a9d60f0
1 changed files with 3 additions and 3 deletions

View File

@ -73,7 +73,7 @@ if you do need to override them.
-K - Keep test environment after tests are finished
-h - Show this help page
Most variables uses guesing from Jenkins' job name but can be overriden
Most variables use guessing from Jenkins' job name but can be overridden
by exported variable before script is run or by one of command line options.
You can override following variables using export VARNAME="value" before running this script
@ -118,12 +118,12 @@ GlobalVariables() {
# full path where iso file should be placed
# make from iso name and path to iso shared directory
# if was not overriden by options or export
# if was not overridden by options or export
if [ -z "${ISO_PATH}" ]; then
ISO_PATH="${ISO_DIR}/${ISO_NAME}"
fi
# what task should be ran
# what task should be run
# it's taken from jenkins job name suffix if not set by options
if [ -z "${TASK_NAME}" ]; then
TASK_NAME="${JOB_NAME##*.}"