
* change BASE_RELEASE and TARGET_RELEASE in grenaderc * remove work-arounds from devstack.localrc.target * remove upgrade steps from the upgrade-* scripts * change references to release names in variables to BASE_ and TARGET_ * remove Javelin check from check-sanity, will return in verify-javelin in https://review.openstack.org/#/c/26257/ Fixes bug 1175340 Change-Id: If1523c73ebefeaf3d3e3efdfbc053f47365d123a
43 lines
827 B
Bash
Executable File
43 lines
827 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ``upgrade-devstack``
|
|
|
|
# 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
|
|
|
|
# For debugging
|
|
set -o xtrace
|
|
|
|
|
|
# Upgrade DevStack
|
|
# ================
|
|
|
|
# noop
|
|
|
|
|
|
# Translate Services
|
|
# ------------------
|
|
|
|
#BASE_ENABLED_SERVICES=$(source $BASE_DEVSTACK_DIR/stackrc; echo $ENABLED_SERVICES)
|
|
#ENABLED_SERVICES=""
|
|
|
|
# NOOP for now!
|
|
|
|
# Write new config to target DevStack
|
|
#echo -e "\nENABLED_SERVICES=$ENABLED_SERVICES" >>$TARGET_DEVSTACK_DIR/localrc
|
|
|
|
# Handle Defaults Changes
|
|
# -----------------------
|
|
|
|
# NOOP for now! |