From 58a6affd6529730ebcf32ac3a39080331fbe9379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubom=C3=ADr=20Sedl=C3=A1=C5=99?= Date: Mon, 29 May 2017 13:29:28 +0200 Subject: [PATCH] checks: Make gpgkey a boolean option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This option is currently only checked in the ostree phase, and it does not make sense as a string. When any non-empty string was given, it enabled the check. Relates: #590 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 bd08f627..60a496fa 100644 --- a/pungi/checks.py +++ b/pungi/checks.py @@ -439,7 +439,7 @@ def _make_schema(): "name": {"type": "string"}, "baseurl": {"type": "string"}, "exclude": {"type": "string"}, - "gpgcheck": {"type": "string"}, + "gpgcheck": {"type": "boolean"}, "enabled": {"type": "string"}, }, "additionalProperties": False,