Starting and stopping these with process names is deprecated and leads to confusing output. Signed-off-by: Stephen Finucane <stephenfin@redhat.com> Change-Id: I85b38aecd1693601777ab932ba322bbc9f3dc1bd
23 lines
435 B
Bash
Executable File
23 lines
435 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
#
|
|
|
|
set -o errexit
|
|
|
|
source $GRENADE_DIR/grenaderc
|
|
source $GRENADE_DIR/functions
|
|
|
|
source $BASE_DEVSTACK_DIR/functions
|
|
source $BASE_DEVSTACK_DIR/stackrc # needed for status directory
|
|
|
|
# Locate the manila plugin and get its functions
|
|
MANILA_DEVSTACK_DIR=$(dirname $(dirname $0))
|
|
source $MANILA_DEVSTACK_DIR/plugin.sh
|
|
|
|
set -o xtrace
|
|
|
|
stop_manila
|
|
|
|
# Ensure everything is stopped
|
|
ensure_services_stopped m-api m-sch m-shr m-dat
|