UC8 - "Configure external network" feature fix

Change-Id: I329639237f889011ca8b0c2621fa8c93809f01c4
This commit is contained in:
sergeylevchenko 2015-06-26 18:34:44 +03:00
parent 690f881b4a
commit 7b890aeeab
1 changed files with 5 additions and 2 deletions

View File

@ -207,6 +207,7 @@ correctly configured.")
loop do
begin
withenv authenv do
args = args.join(" ")
rv = keystone(args)
end
break
@ -244,8 +245,10 @@ correctly configured.")
def self.get_tenant_id(catalog, name)
rv = nil
auth_keystone('tenant-list').each do |line|
fields=line.split(/\s*\|\s*/)
# auth_keystone('tenant-list').each do |line|
# fields=line.split(/\s*\|\s*/)
fields = auth_keystone('tenant-list').split(/\s*\|\s*/)
fields.each do |line|
if fields[1] and fields[1].size == 32
if fields[2] == name
rv = fields[1]