Browse code

Merge "make install_heatclient like other client installs"

Jenkins authored on 2013/07/27 11:40:45
Showing 2 changed files
... ...
@@ -41,11 +41,6 @@ function cleanup_heat() {
41 41
     sudo rm -rf $HEAT_AUTH_CACHE_DIR
42 42
 }
43 43
 
44
-# configure_heatclient() - Set config files, create data dirs, etc
45
-function configure_heatclient() {
46
-    setup_develop $HEATCLIENT_DIR
47
-}
48
-
49 44
 # configure_heat() - Set config files, create data dirs, etc
50 45
 function configure_heat() {
51 46
     setup_develop $HEAT_DIR
... ...
@@ -176,6 +171,7 @@ function create_heat_cache_dir() {
176 176
 # install_heatclient() - Collect source and prepare
177 177
 function install_heatclient() {
178 178
     git_clone $HEATCLIENT_REPO $HEATCLIENT_DIR $HEATCLIENT_BRANCH
179
+    setup_develop $HEATCLIENT_DIR
179 180
 }
180 181
 
181 182
 # install_heat() - Collect source and prepare
... ...
@@ -742,11 +742,10 @@ if is_service_enabled ceilometer; then
742 742
 fi
743 743
 
744 744
 if is_service_enabled heat; then
745
-    install_heat
746 745
     install_heatclient
746
+    install_heat
747 747
     cleanup_heat
748 748
     configure_heat
749
-    configure_heatclient
750 749
 fi
751 750
 
752 751
 if is_service_enabled tls-proxy; then