The following pull request was submitted through Github. It can be accessed and reviewed at: https://github.com/lxc/distrobuilder/pull/108
This e-mail was sent by the LXC bot, direct replies will not reach the author unless they happen to be subscribed to this list. === Description (from pull-request) === Signed-off-by: Thomas Hipp <[email protected]>
From 9d48f5d607595a4b40ee7a69ce491bd2d4db0d87 Mon Sep 17 00:00:00 2001 From: Thomas Hipp <[email protected]> Date: Fri, 6 Jul 2018 12:12:35 +0200 Subject: [PATCH] centos: Fix checksum file name Signed-off-by: Thomas Hipp <[email protected]> --- sources/centos-http.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/centos-http.go b/sources/centos-http.go index 0b68617..5bc68e2 100644 --- a/sources/centos-http.go +++ b/sources/centos-http.go @@ -52,7 +52,7 @@ func (s *CentOSHTTP) Run(definition shared.Definition, rootfsDir string) error { return errors.New("GPG keys are required if downloading from HTTP") } - checksumFile = "sha256sum.txt" + checksumFile = "sha256sum.txt.asc" shared.DownloadSha256(baseURL+checksumFile, "") valid, err := shared.VerifyFile(filepath.Join(os.TempDir(), checksumFile), "", definition.Source.Keys, definition.Source.Keyserver)
_______________________________________________ lxc-devel mailing list [email protected] http://lists.linuxcontainers.org/listinfo/lxc-devel
