
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
25 lines
591 B
Bash
Executable File
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
|