switch to openstack cli instead of keystone cli

keystone cli is dead, let's use openstack cli instead

Change-Id: I43219e4ab41c76e763096f0f87d8bb95ae6d2429
This commit is contained in:
ZhiQiang Fan 2016-04-19 15:46:43 +08:00
parent 2f718d08e3
commit 5ccbea9623
1 changed files with 3 additions and 3 deletions

View File

@ -16,10 +16,10 @@ else
fi
# Convert a possible project name to an id, if we have
# keystone installed.
if which keystone >/dev/null
# openstack cli installed.
if which openstack >/dev/null
then
project=$(keystone tenant-list | grep " $project_name " | cut -f2 -d'|' | cut -f2 -d' ')
project=$(openstack project show "$project_name" -c id -f value)
else
# Assume they gave us the project id as argument.
project="$project_name"