Takashi Kajinami 3698faafdd grenade: Use systemd unit name to check service status
Using the service name was deprecated by [1].

[1] 0965bc0dced806f51a4d4bd39642dab20dbec87e

Change-Id: Id9f2eb7b7fe77e832fe0d1bc004f252d14561134
2024-11-17 15:03:16 +00:00

77 lines
2.3 KiB
Bash
Executable File

#!/usr/bin/env bash
# ``upgrade-ceilometer``
echo "*********************************************************************"
echo "Begin $0"
echo "*********************************************************************"
# Clean up any resources that may be in use
cleanup() {
set +o errexit
echo "*********************************************************************"
echo "ERROR: Abort $0"
echo "*********************************************************************"
# Kill ourselves to signal any calling process
trap 2; kill -2 $$
}
trap cleanup SIGHUP SIGINT SIGTERM
# Keep track of the grenade directory
RUN_DIR=$(cd $(dirname "$0") && pwd)
# Source params
source $GRENADE_DIR/grenaderc
# Import common functions
source $GRENADE_DIR/functions
# This script exits on an error so that errors don't compound and you see
# only the first error that occurred.
set -o errexit
# Upgrade Ceilometer
# ==================
# Locate ceilometer devstack plugin, the directory above the
# grenade plugin.
CEILOMETER_DEVSTACK_DIR=$(dirname $(dirname $0))
# Get functions from current DevStack
source $TARGET_DEVSTACK_DIR/functions
source $TARGET_DEVSTACK_DIR/stackrc
source $TARGET_DEVSTACK_DIR/lib/apache
# Get ceilometer functions from devstack plugin
source $CEILOMETER_DEVSTACK_DIR/settings
# Print the commands being run so that we can see the command that triggers
# an error.
set -o xtrace
# Install the target ceilometer
source $CEILOMETER_DEVSTACK_DIR/plugin.sh stack install
# calls upgrade-ceilometer for specific release
upgrade_project ceilometer $RUN_DIR $BASE_DEVSTACK_BRANCH $TARGET_DEVSTACK_BRANCH
# Migrate the database
# NOTE(chdent): As we evolve BIN_DIR is likely to be defined, but
# currently it is not.
CEILOMETER_BIN_DIR=$(get_python_exec_prefix)
$CEILOMETER_BIN_DIR/ceilometer-upgrade --skip-gnocchi-resource-types || die $LINENO "ceilometer-upgrade error"
# Start Ceilometer
start_ceilometer
# Note(liamji): Disable the test for ceilometer-aipmi.
# In the test environment, the impi is not ready and the service should fail.
ensure_services_started ceilometer-acentral ceilometer-acompute ceilometer-anotification
set +o xtrace
echo "*********************************************************************"
echo "SUCCESS: End $0"
echo "*********************************************************************"