Merge "Fix a typo in haproxy.pp"

This commit is contained in:
Jenkins 2017-05-23 06:48:24 +00:00 committed by Gerrit Code Review
commit 286fe06f5c
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##*.}"