allow DEVSTACK_DIRS to be overridden

Allowing DEVSTACK_DIRS to be overridden lets the run_resources.sh
script work outside of grenade. This is needed for the -d option added
in the last patch to actually do something useful.

Change-Id: Ic56e300a0ab1872e4cef37a22dd09cd4a8dd1e92
This commit is contained in:
Sean Dague 2015-04-23 07:32:32 -04:00
parent c2d096c4f7
commit 5ea9945530

View File

@ -28,11 +28,11 @@ TARGET_RELEASE_DIR=${STACK_ROOT}/$TARGET_RELEASE
# DevStack sources
BASE_DEVSTACK_REPO=$GIT_BASE/openstack-dev/devstack.git
BASE_DEVSTACK_BRANCH=${BASE_DEVSTACK_BRANCH:-stable/$BASE_RELEASE}
BASE_DEVSTACK_DIR=$BASE_RELEASE_DIR/devstack
BASE_DEVSTACK_DIR=${BASE_DEVSTACK_DIR:-$BASE_RELEASE_DIR/devstack}
TARGET_DEVSTACK_REPO=$BASE_DEVSTACK_REPO
TARGET_DEVSTACK_BRANCH=${TARGET_DEVSTACK_BRANCH:-master}
TARGET_DEVSTACK_DIR=$TARGET_RELEASE_DIR/devstack
TARGET_DEVSTACK_DIR=${TARGET_DEVSTACK_DIR:-$TARGET_RELEASE_DIR/devstack}
TEMPEST_CONCURRENCY=${TEMPEST_CONCURRENCY:-$(nproc --all)}