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

common: downloads can be HTTPS [GH-587]

parent a4bf1593
...@@ -7,6 +7,7 @@ FEATURES: ...@@ -7,6 +7,7 @@ FEATURES:
IMPROVEMENTS: IMPROVEMENTS:
* builder/vmware,builder/virtualbox: ISO urls can now be https [GH-587]
* builder/virtualbox: Can now disable guest addition download entirely * builder/virtualbox: Can now disable guest addition download entirely
by setting "guest_additions_mode" to "disable" [GH-580] by setting "guest_additions_mode" to "disable" [GH-580]
......
...@@ -74,6 +74,7 @@ func NewDownloadClient(c *DownloadConfig) *DownloadClient { ...@@ -74,6 +74,7 @@ func NewDownloadClient(c *DownloadConfig) *DownloadClient {
if c.DownloaderMap == nil { if c.DownloaderMap == nil {
c.DownloaderMap = map[string]Downloader{ 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