Added the line for installing python-quantumclient. Manually Tested.
Note: Fixes added regarding horizon's dependency on quantum-client

Change-Id: I1d739f81ce2118363cc05ec4a858ac2e732e9d0d
This commit is contained in:
Deepak Garg 2012-02-22 12:15:26 +05:30
parent c1bf680ebb
commit 1e98bdc5b4

View File

@ -582,6 +582,8 @@ fi
if is_service_enabled q-svc; then
# quantum
git_clone $QUANTUM_REPO $QUANTUM_DIR $QUANTUM_BRANCH
fi
if is_service_enabled q-svc horizon; then
git_clone $QUANTUM_CLIENT_REPO $QUANTUM_CLIENT_DIR $QUANTUM_CLIENT_BRANCH
fi
@ -620,6 +622,9 @@ fi
if is_service_enabled q-svc; then
cd $QUANTUM_DIR; sudo python setup.py develop
fi
if is_service_enabled q-svc horizon; then
cd $QUANTUM_CLIENT_DIR; sudo python setup.py develop
fi
if is_service_enabled m-svc; then
cd $MELANGE_DIR; sudo python setup.py develop
fi