Add python-openstackclient required plugin package

python-openstackclient has plugin interface.
To generate full help message,
it needs to add plugin package (python-ironicclient) also.

Change-Id: I7b29b47eb58cb1aaa09aec9ca0ff3b8064ebd35d
This commit is contained in:
Atsushi SAKAI 2015-11-19 21:40:11 +09:00
parent 88bb649f57
commit bf38181d21
1 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,12 @@ if [[ $project == 'gnocchi' ]]; then
else else
pip install --upgrade python-${project}client pip install --upgrade python-${project}client
fi fi
# python-openstackclient has plugin interface.
# It needs to install plugin package
# (i.e. python-ironicclient).
if [[ $project == 'openstack' ]]; then
pip install --upgrade python-ironicclient
fi
rm -rf output rm -rf output
mkdir output mkdir output