cloudstack: fix project name must not be case sensitiv

This commit is contained in:
Rene Moser 2015-06-09 13:06:24 +02:00 committed by Matt Clay
parent 5c4415b821
commit 2c1df46167

View file

@ -167,7 +167,7 @@ class AnsibleCloudStackProject(AnsibleCloudStack):
projects = self.cs.listProjects(**args)
if projects:
for p in projects['project']:
if project in [ p['name'], p['id']]:
if project.lower() in [ p['name'].lower(), p['id']]:
self.project = p
break
return self.project