Merge "Add additional openstack client plugins"

This commit is contained in:
Jenkins 2015-12-17 08:32:42 +00:00 committed by Gerrit Code Review
commit 33daf7f447
1 changed files with 6 additions and 2 deletions

View File

@ -54,10 +54,14 @@ else
pip install --upgrade python-${project}client pip install --upgrade python-${project}client
fi fi
# python-openstackclient has plugin interface. # python-openstackclient has plugin interface.
# It needs to install plugin package # It needs to install plugin packages
# (i.e. python-ironicclient). # (i.e. python-ironicclient).
osc_plugins = (congress cue designate ironic heat mistral sahara tuskar)
if [[ $project == 'openstack' ]]; then if [[ $project == 'openstack' ]]; then
pip install --upgrade python-ironicclient for p in "${osc_plugins[@]}"
do
pip install --upgrade python-${p}client
done
fi fi
rm -rf output rm -rf output