Commit 24db112b authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

common: downloads can be HTTPS [GH-587]

parent a4bf1593
......@@ -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),
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment