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
This commit is contained in:
Thomas Herve 2015-10-15 14:38:13 +02:00
parent 6b8e83ceb1
commit 06f2fd72cd
1 changed files with 3 additions and 3 deletions

View File

@ -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"