common: downloads can be HTTPS [GH-587]

pull/919/head
Mitchell Hashimoto 12 years ago
parent a4bf15930b
commit 24db112b79

@ -7,6 +7,7 @@ FEATURES:
IMPROVEMENTS:
* builder/vmware,builder/virtualbox: ISO urls can now be https [GH-587]
* builder/virtualbox: Can now disable guest addition download entirely
by setting "guest_additions_mode" to "disable" [GH-580]

@ -73,7 +73,8 @@ func HashForType(t string) hash.Hash {
func NewDownloadClient(c *DownloadConfig) *DownloadClient {
if c.DownloaderMap == nil {
c.DownloaderMap = map[string]Downloader{
"http": new(HTTPDownloader),
"http": new(HTTPDownloader),
"https": new(HTTPDownloader),
}
}

Loading…
Cancel
Save