Default $STABLE_RELEASE in bootstrap-overcloud-full.sh

This script is meant to be able to be used standalone as well as from
tripleo-ci. The $STABLE_RELEASE variable needs to be defaulted to an
empty string otherwise the script will fail since it is set -u.

Change-Id: I6aa8bd3b01b1147de9b45f40ded8318fb46dcaf8
This commit is contained in:
James Slagle 2016-10-11 17:19:31 -04:00
parent 739ec9618a
commit 62a61fda3c
1 changed files with 2 additions and 0 deletions

View File

@ -2,6 +2,8 @@
set -eux
export STABLE_RELEASE=${STABLE_RELEASE:-""}
# Source deploy.env if it exists. It should exist if we are running under
# tripleo-ci
export TRIPLEO_ROOT=${TRIPLEO_ROOT:-"/opt/stack/new"}