Merge pull request #699 from svanharmelen/f-provider/cloudstack-small-fix

provider/cloudstack: changing this fixes an Excoscale issue where 'all' is not allowed
This commit is contained in:
Sander van Harmelen 2014-12-19 19:21:47 +01:00
commit fd6382fbaf
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ func retrieveUUID(cs *cloudstack.CloudStackClient, name, value string) (uuid str
case "vpc":
uuid, err = cs.VPC.GetVPCID(value)
case "template":
uuid, err = cs.Template.GetTemplateID(value, "all")
uuid, err = cs.Template.GetTemplateID(value, "executable")
case "network":
uuid, err = cs.Network.GetNetworkID(value)
case "zone":