Install quantumclient from git before quantum.

There is an issue with installing git dependency_links via
setuptools develop command. We're working on it generally,
but for now this will make quantum happier with devstack.

Change-Id: I8df88f4bca9f2b43b1d56fc7e77e26793b4c4b9f
This commit is contained in:
Monty Taylor 2012-03-23 11:32:29 -07:00
parent 7398f94ef2
commit 5440ac0e09

View File

@ -646,14 +646,13 @@ if is_service_enabled horizon; then
# django powered web control panel for openstack
git_clone $HORIZON_REPO $HORIZON_DIR $HORIZON_BRANCH $HORIZON_TAG
fi
if is_service_enabled quantum; then
git_clone $QUANTUM_CLIENT_REPO $QUANTUM_CLIENT_DIR $QUANTUM_CLIENT_BRANCH
fi
if is_service_enabled q-svc; then
# quantum
git_clone $QUANTUM_REPO $QUANTUM_DIR $QUANTUM_BRANCH
fi
if is_service_enabled quantum; then
git_clone $QUANTUM_CLIENT_REPO $QUANTUM_CLIENT_DIR $QUANTUM_CLIENT_BRANCH
fi
if is_service_enabled m-svc; then
# melange
git_clone $MELANGE_REPO $MELANGE_DIR $MELANGE_BRANCH
@ -684,12 +683,12 @@ cd $NOVA_DIR; sudo python setup.py develop
if is_service_enabled horizon; then
cd $HORIZON_DIR; sudo python setup.py develop
fi
if is_service_enabled q-svc; then
cd $QUANTUM_DIR; sudo python setup.py develop
fi
if is_service_enabled quantum; then
cd $QUANTUM_CLIENT_DIR; sudo python setup.py develop
fi
if is_service_enabled q-svc; then
cd $QUANTUM_DIR; sudo python setup.py develop
fi
if is_service_enabled m-svc; then
cd $MELANGE_DIR; sudo python setup.py develop
fi