Add n-cond to list of nova processes to kill

n-cond was missing from the list of nova processes.

(plucked from gate)

Change-Id: I7aceff852de82b7e70294cf069c21d3399b27020
This commit is contained in:
Joe Gordon 2013-12-25 14:19:09 -08:00 committed by Sean Dague
parent 0123b9aae8
commit d387db0094
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ TOP_DIR=$TARGET_DEVSTACK_DIR
# ============
# Kill running Nova processes
for serv in n-api n-cauth n-cpu n-crt n-net n-novnc n-obj n-sch n-vol n-xvnc; do
for serv in n-api n-cond n-cauth n-cpu n-crt n-net n-novnc n-obj n-sch n-vol n-xvnc; do
screen -S $SCREEN_NAME -p $serv -X kill
done