Merge "Add clean configuration files to upgrade from H to I"

This commit is contained in:
Jenkins 2013-12-12 12:34:25 +00:00 committed by Gerrit Code Review
commit ed1bc8a928
11 changed files with 96 additions and 5 deletions

9
from-havana/upgrade-cinder Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# ``upgrade-cinder``
function configure_cinder_upgrade(){
set -o xtrace
# nothing to see here
set +o xtrace
}

9
from-havana/upgrade-devstack Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# ``upgrade-devstack``
function configure_devstack_upgrade(){
set -o xtrace
# nothing to see here yet
set +o xtrace
}

9
from-havana/upgrade-glance Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# ``upgrade-glance``
function configure_glance_upgrade(){
set -o xtrace
# nothing to see here
set +o xtrace
}

10
from-havana/upgrade-keystone Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
# ``upgrade-keystone``
configure_keystone_upgrade(){
set -o xtrace
# nothing to see here yet
set +o xtrace
}

10
from-havana/upgrade-nova Executable file
View File

@ -0,0 +1,10 @@
#!/usr/bin/env bash
# ``upgrade-nova``
function configure_nova_upgrade(){
set -o xtrace
# upgrade rootwrap configs
configure_nova_rootwrap
set +o xtrace
}

9
from-havana/upgrade-oslo Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# ``upgrade-oslo``
function configure_oslo_upgrade(){
set -o xtrace
# nothing to see here yet
set +o xtrace
}

18
from-havana/upgrade-packages Executable file
View File

@ -0,0 +1,18 @@
#!/usr/bin/env bash
# ``upgrade_packages``
# Upgrade Dependencies
# ====================
# Glance
GLANCE_PIPS=""
# Nova
NOVA_PIPS=""
# Horizon
HORIZON_PIPS=""
# Quantum
QUANTUM_PIPS=""

9
from-havana/upgrade-swift Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# ``upgrade-swift``
function configure_swift_upgrade(){
set -o xtrace
# nothing to see here yet
set +o xtrace
}

9
from-havana/upgrade-tempest Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
# ``upgrade-tempest``
function configure_tempest_upgrade(){
set -o xtrace
# nothing to see here yet
set +o xtrace
}

View File

@ -636,11 +636,10 @@ function git_update_tag() {
# Returns openstack release name for a given branch name
# At first it return master for a not released version
function get_release_name_from_branch(){
local branch=$1
if [ $branch == "stable/grizzly" ]; then
echo "grizzly"
if [[ $branch =~ "stable/" ]]; then
echo ${branch#*/}
else
echo "master"
fi

View File

@ -13,10 +13,10 @@ STACK_ROOT=/opt/stack
DATA_DIR=${STACK_ROOT}/data
# Release info
BASE_RELEASE=grizzly
BASE_RELEASE=havana
BASE_RELEASE_DIR=${STACK_ROOT}/$BASE_RELEASE
TARGET_RELEASE=havana
TARGET_RELEASE=icehouse
TARGET_RELEASE_DIR=${STACK_ROOT}/$TARGET_RELEASE
# DevStack sources