Merge pull request #3866 from andrestc/core-drivers-slice

libmachine: initiliaze core drivers as slice instead of array
This commit is contained in:
Nathan LeClaire
2016-11-11 11:28:06 -08:00
committed by GitHub

View File

@@ -17,7 +17,7 @@ var (
// plugin server.
defaultTimeout = 10 * time.Second
CurrentBinaryIsDockerMachine = false
CoreDrivers = [...]string{"amazonec2", "azure", "digitalocean",
CoreDrivers = []string{"amazonec2", "azure", "digitalocean",
"exoscale", "generic", "google", "hyperv", "none", "openstack",
"rackspace", "softlayer", "virtualbox", "vmwarefusion",
"vmwarevcloudair", "vmwarevsphere"}