Source fixup_stuff...
...so it can pick up config variables from local.conf Change-Id: I0991f59881f16c72789e3b0342c26a2419ba0878
This commit is contained in:
parent
5dd1778909
commit
04a351133a
2
stack.sh
2
stack.sh
@ -662,7 +662,7 @@ if [[ "$OFFLINE" != "True" ]]; then
|
||||
fi
|
||||
|
||||
# Do the ugly hacks for broken packages and distros
|
||||
$TOP_DIR/tools/fixup_stuff.sh
|
||||
source $TOP_DIR/tools/fixup_stuff.sh
|
||||
|
||||
|
||||
# Extras Pre-install
|
||||
|
@ -20,20 +20,24 @@
|
||||
# - pre-install hgtools to work around a bug in RHEL6 distribute
|
||||
# - install nose 1.1 from EPEL
|
||||
|
||||
set -o errexit
|
||||
set -o xtrace
|
||||
# If TOP_DIR is set we're being sourced rather than running stand-alone
|
||||
# or in a sub-shell
|
||||
if [[ -z "$TOP_DIR" ]]; then
|
||||
set -o errexit
|
||||
set -o xtrace
|
||||
|
||||
# Keep track of the current directory
|
||||
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
|
||||
TOP_DIR=$(cd $TOOLS_DIR/..; pwd)
|
||||
# Keep track of the current directory
|
||||
TOOLS_DIR=$(cd $(dirname "$0") && pwd)
|
||||
TOP_DIR=$(cd $TOOLS_DIR/..; pwd)
|
||||
|
||||
# Change dir to top of devstack
|
||||
cd $TOP_DIR
|
||||
# Change dir to top of devstack
|
||||
cd $TOP_DIR
|
||||
|
||||
# Import common functions
|
||||
source $TOP_DIR/functions
|
||||
# Import common functions
|
||||
source $TOP_DIR/functions
|
||||
|
||||
FILES=$TOP_DIR/files
|
||||
FILES=$TOP_DIR/files
|
||||
fi
|
||||
|
||||
# Keystone Port Reservation
|
||||
# -------------------------
|
||||
|
Loading…
Reference in New Issue
Block a user