Browse code

Bug #938403.

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

Change-Id: I1d739f81ce2118363cc05ec4a858ac2e732e9d0d

Deepak Garg authored on 2012/02/22 15:45:26
Showing 1 changed files
... ...
@@ -582,6 +582,8 @@ fi
582 582
 if is_service_enabled q-svc; then
583 583
     # quantum
584 584
     git_clone $QUANTUM_REPO $QUANTUM_DIR $QUANTUM_BRANCH
585
+fi
586
+if is_service_enabled q-svc horizon; then
585 587
     git_clone $QUANTUM_CLIENT_REPO $QUANTUM_CLIENT_DIR $QUANTUM_CLIENT_BRANCH
586 588
 fi
587 589
 
... ...
@@ -620,6 +622,9 @@ fi
620 620
 if is_service_enabled q-svc; then
621 621
     cd $QUANTUM_DIR; sudo python setup.py develop
622 622
 fi
623
+if is_service_enabled q-svc horizon; then
624
+    cd $QUANTUM_CLIENT_DIR; sudo python setup.py develop
625
+fi
623 626
 if is_service_enabled m-svc; then
624 627
     cd $MELANGE_DIR; sudo python setup.py develop
625 628
 fi