Source fixup_stuff...

...so it can pick up config variables from local.conf

Change-Id: I0991f59881f16c72789e3b0342c26a2419ba0878
This commit is contained in:
Dean Troyer 2014-08-15 14:03:52 -05:00
parent 5dd1778909
commit 04a351133a
2 changed files with 15 additions and 11 deletions

View File

@ -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

View File

@ -20,6 +20,9 @@
# - pre-install hgtools to work around a bug in RHEL6 distribute
# - install nose 1.1 from EPEL
# 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
@ -34,6 +37,7 @@ cd $TOP_DIR
source $TOP_DIR/functions
FILES=$TOP_DIR/files
fi
# Keystone Port Reservation
# -------------------------