common: downloads can be HTTPS [GH-587]

pull/589/head
Mitchell Hashimoto 13 years ago
parent a5812670a8
commit 4856300f62

@ -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