Merge "cleanup potentially installed older oslo.config"
This commit is contained in:
commit
79e11ed7ca
1
clean.sh
1
clean.sh
@ -56,6 +56,7 @@ if [[ -n "$SESSION" ]]; then
|
||||
fi
|
||||
|
||||
# Clean projects
|
||||
cleanup_oslo
|
||||
cleanup_cinder
|
||||
cleanup_glance
|
||||
cleanup_keystone
|
||||
|
15
lib/oslo
15
lib/oslo
@ -27,6 +27,10 @@ OSLOMSG_DIR=$DEST/oslo.messaging
|
||||
|
||||
# install_oslo() - Collect source and prepare
|
||||
function install_oslo() {
|
||||
# TODO(sdague): remove this once we get to Icehouse, this just makes
|
||||
# for a smoother transition of existing users.
|
||||
cleanup_oslo
|
||||
|
||||
git_clone $OSLOCFG_REPO $OSLOCFG_DIR $OSLOCFG_BRANCH
|
||||
setup_develop $OSLOCFG_DIR
|
||||
|
||||
@ -34,6 +38,17 @@ function install_oslo() {
|
||||
setup_develop $OSLOMSG_DIR
|
||||
}
|
||||
|
||||
# cleanup_oslo() - purge possibly old versions of oslo
|
||||
function cleanup_oslo() {
|
||||
# this means we've got an old olso installed, lets get rid of it
|
||||
if find /usr | grep oslo.config | grep -v oslo.config.egg-link > /dev/null; then
|
||||
echo "Found old oslo.config... removing to ensure consistency"
|
||||
local PIP_CMD=$(get_pip_command)
|
||||
pip_install olso.config
|
||||
sudo $PIP_CMD uninstall -y olso.config
|
||||
fi
|
||||
}
|
||||
|
||||
# Restore xtrace
|
||||
$XTRACE
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user