--- quickstart.sh 2018-03-13 10:46:39.968000000 -0500 +++ quickstart-modified.sh 2018-03-13 10:45:27.465000000 -0500 @@ -112,6 +112,7 @@ $OPT_WORKDIR . $OPT_WORKDIR/bin/activate pip install pip --upgrade + pip install setuptools --upgrade if [ "$OPT_NO_CLONE" != 1 ]; then if ! [ -d "$OOOQ_DIR" ]; then @@ -146,6 +147,17 @@ cd openstack/tripleo-quickstart-extras pip install . popd + else + mkdir -p .tmp + EXTRAS_DIR=$(/bin/mktemp -d -p $(pwd)/.tmp) + pushd $EXTRAS_DIR + git clone https://github.com/openstack/tripleo-quickstart-extras.git + cd tripleo-quickstart-extras + #To match above, but does not seem needed + git remote update + git checkout --quiet origin/master + pip install . + popd fi # Handle the case that pip is too old to use a cache-dir pip install --no-cache-dir "${OPT_REQARGS[@]}"