summaryrefslogtreecommitdiff
path: root/devstack/upgrade
diff options
context:
space:
mode:
authorThomas Herve <therve@redhat.com>2015-10-15 14:38:13 +0200
committerThomas Herve <therve@redhat.com>2015-10-15 14:38:13 +0200
commit06f2fd72cd97219853a670db85275cfc7474f7a6 (patch)
tree5b56313649219e185681f95857eb878abdc11adf /devstack/upgrade
parent6b8e83ceb1b336c0e1831f04caf5b09eaf04e4d3 (diff)
downloadheat-06f2fd72cd97219853a670db85275cfc7474f7a6.tar.gz
Fix grenade shutdown script
Due to some fix in devstack, using the old lib/heat library doesn't work anymore, so let's replicate the stop_heat function. Change-Id: I8e7c62962cef29e35c37ad98a1646630388fb4ab Closes-Bug: #1506462
Diffstat (limited to 'devstack/upgrade')
-rwxr-xr-xdevstack/upgrade/shutdown.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/devstack/upgrade/shutdown.sh b/devstack/upgrade/shutdown.sh
index 7e2f9ebb4..55ceed338 100755
--- a/devstack/upgrade/shutdown.sh
+++ b/devstack/upgrade/shutdown.sh
@@ -20,12 +20,12 @@ source $GRENADE_DIR/functions
# We need base DevStack functions for this
source $BASE_DEVSTACK_DIR/functions
source $BASE_DEVSTACK_DIR/stackrc # needed for status directory
-source $BASE_DEVSTACK_DIR/lib/tls
-source $BASE_DEVSTACK_DIR/lib/heat
set -o xtrace
-stop_heat
+for serv in h-eng h-api h-api-cfn h-api-cw; do
+ stop_process $serv
+done
SERVICES_DOWN="heat-api heat-engine heat-api-cfn heat-api-cloudwatch"