make install_heatclient like other client installs
all the other install_*client functions do the setup develop inline. Do the same thing for heat. Change-Id: Ib2043580af6b7f14f24f7304e5f47f4523517d06
This commit is contained in:
parent
5011c03d03
commit
d644e23c95
6
lib/heat
6
lib/heat
@ -41,11 +41,6 @@ function cleanup_heat() {
|
|||||||
sudo rm -rf $HEAT_AUTH_CACHE_DIR
|
sudo rm -rf $HEAT_AUTH_CACHE_DIR
|
||||||
}
|
}
|
||||||
|
|
||||||
# configure_heatclient() - Set config files, create data dirs, etc
|
|
||||||
function configure_heatclient() {
|
|
||||||
setup_develop $HEATCLIENT_DIR
|
|
||||||
}
|
|
||||||
|
|
||||||
# configure_heat() - Set config files, create data dirs, etc
|
# configure_heat() - Set config files, create data dirs, etc
|
||||||
function configure_heat() {
|
function configure_heat() {
|
||||||
setup_develop $HEAT_DIR
|
setup_develop $HEAT_DIR
|
||||||
@ -176,6 +171,7 @@ function create_heat_cache_dir() {
|
|||||||
# install_heatclient() - Collect source and prepare
|
# install_heatclient() - Collect source and prepare
|
||||||
function install_heatclient() {
|
function install_heatclient() {
|
||||||
git_clone $HEATCLIENT_REPO $HEATCLIENT_DIR $HEATCLIENT_BRANCH
|
git_clone $HEATCLIENT_REPO $HEATCLIENT_DIR $HEATCLIENT_BRANCH
|
||||||
|
setup_develop $HEATCLIENT_DIR
|
||||||
}
|
}
|
||||||
|
|
||||||
# install_heat() - Collect source and prepare
|
# install_heat() - Collect source and prepare
|
||||||
|
3
stack.sh
3
stack.sh
@ -739,11 +739,10 @@ if is_service_enabled ceilometer; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if is_service_enabled heat; then
|
if is_service_enabled heat; then
|
||||||
install_heat
|
|
||||||
install_heatclient
|
install_heatclient
|
||||||
|
install_heat
|
||||||
cleanup_heat
|
cleanup_heat
|
||||||
configure_heat
|
configure_heat
|
||||||
configure_heatclient
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if is_service_enabled tls-proxy; then
|
if is_service_enabled tls-proxy; then
|
||||||
|
Loading…
Reference in New Issue
Block a user