From 460a8dea0e1d3be4d12a5e313630af8ec4f1ed00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Wed, 19 Apr 2017 16:04:22 +0200 Subject: [PATCH] config: Add sha512 as valid createrepo checksum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Relates: #591 Signed-off-by: Lubomír Sedlář --- pungi/checks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pungi/checks.py b/pungi/checks.py index db0b677d..b8db535a 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -597,7 +597,7 @@ def _make_schema(): "createrepo_checksum": { "type": "string", "default": "sha256", - "enum": ["sha", "sha256"], + "enum": ["sha", "sha256", "sha512"], }, "createrepo_use_xz": { "type": "boolean",