97 lines
2.6 KiB
Bash
Executable File
97 lines
2.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ``upgrade-swift``
|
|
|
|
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
|
|
GRENADE_DIR=$(cd $(dirname "$0") && pwd)
|
|
|
|
# Import common functions
|
|
source $GRENADE_DIR/functions
|
|
|
|
# Determine what system we are running on. This provides ``os_VENDOR``,
|
|
# ``os_RELEASE``, ``os_UPDATE``, ``os_PACKAGE``, ``os_CODENAME``
|
|
# and ``DISTRO``
|
|
GetDistro
|
|
|
|
# Source params
|
|
source $GRENADE_DIR/grenaderc
|
|
|
|
# This script exits on an error so that errors don't compound and you see
|
|
# only the first error that occured.
|
|
set -o errexit
|
|
|
|
# Print the commands being run so that we can see the command that triggers
|
|
# an error. It is also useful for following allowing as the install occurs.
|
|
set -o xtrace
|
|
|
|
# Set for DevStack compatibility
|
|
TOP_DIR=$TARGET_DEVSTACK_DIR
|
|
|
|
|
|
# Upgrade Swift
|
|
# =============
|
|
|
|
# Kill running Cinder processes
|
|
for serv in swift; do
|
|
screen -S $SCREEN_NAME -p $serv -X kill
|
|
done
|
|
|
|
MYSQL_HOST=${MYSQL_HOST:-localhost}
|
|
MYSQL_USER=${MYSQL_USER:-root}
|
|
BASE_SQL_CONN=$(source $BASE_DEVSTACK_DIR/stackrc; echo ${BASE_SQL_CONN:-mysql://$MYSQL_USER:$MYSQL_PASSWORD@$MYSQL_HOST})
|
|
|
|
# Duplicate some setup bits from target DevStack
|
|
cd $TARGET_DEVSTACK_DIR
|
|
source $TARGET_DEVSTACK_DIR/stackrc
|
|
DATA_DIR=${DEST}/data
|
|
SERVICE_HOST=${SERVICE_HOST:-localhost}
|
|
SERVICE_PROTOCOL=${SERVICE_PROTOCOL:-http}
|
|
SERVICE_TENANT_NAME=${SERVICE_TENANT_NAME:-service}
|
|
SERVICE_TOKEN=${SERVICE_TOKEN:-aa-token-bb}
|
|
#source $TARGET_DEVSTACK_DIR/lib/database
|
|
#source $TARGET_DEVSTACK_DIR/lib/rpc_backend
|
|
source $TARGET_DEVSTACK_DIR/lib/keystone
|
|
|
|
source $TARGET_DEVSTACK_DIR/lib/swift
|
|
SWIFT_CONFIG_PROXY_SERVER=${SWIFT_CONFIG_DIR}/proxy-server.conf
|
|
SWIFT_CONF=${SWIFT_CONFIG_DIR}/swift.conf
|
|
|
|
# Save current config files for posterity
|
|
[[ -d $SAVE_DIR/etc.swift ]] || cp -pr $SWIFT_CONF_DIR $SAVE_DIR/etc.swift
|
|
|
|
# install_swift()
|
|
install_swift
|
|
install_swiftclient
|
|
|
|
# configure_swift()
|
|
configure_swift
|
|
configure_swiftclient
|
|
|
|
# Simulate init_swift()
|
|
init_swift
|
|
|
|
start_swift
|
|
|
|
set +o xtrace
|
|
echo "*********************************************************************"
|
|
echo "SUCCESS: End $0"
|
|
echo "*********************************************************************"
|