Sean Dague 9d31caa397 Try to stop_neutron without /bin/true
This masked out the real error we would have seen otherwise, see if
services are now shutting down cleanly enough to use this.

Change-Id: Iee8e509d58a22ca9e385d6b818c147088cfe16e9
2016-09-22 20:25:09 +00:00

25 lines
591 B
Bash
Executable File

#!/bin/bash
#
#
set -o errexit
source $GRENADE_DIR/grenaderc
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
# TODO(sdague): remove this conditional once we've branched
# grenade. Right now we need to support stable/mitaka, stable/newton,
# and master devstack
if [[ -e $BASE_DEVSTACK_DIR/lib/neutron ]]; then
source $BASE_DEVSTACK_DIR/lib/neutron
fi
source $BASE_DEVSTACK_DIR/lib/neutron-legacy
set -o xtrace
stop_neutron