From abb2d92c7eae28d85f464c6401e92dfe0fa6a213 Mon Sep 17 00:00:00 2001 From: Rickard von Essen Date: Tue, 9 Feb 2016 13:02:42 +0100 Subject: [PATCH] Removed ftp/ftps schemas since they don't work. --- common/iso_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/iso_config.go b/common/iso_config.go index a4d2934c6..fddea5bb3 100644 --- a/common/iso_config.go +++ b/common/iso_config.go @@ -66,7 +66,7 @@ func (c *ISOConfig) Prepare(ctx *interpolate.Context) ([]string, []error) { return warnings, errs } switch u.Scheme { - case "http", "https", "ftp", "ftps": + case "http", "https": res, err := http.Get(c.ISOChecksumURL) c.ISOChecksum = "" if err != nil {