From 90602674582419c6ba1cae46e2836390222cf076 Mon Sep 17 00:00:00 2001 From: Jordan Bradford <36420801+jrdnbradford@users.noreply.github.com> Date: Sat, 3 Feb 2024 13:39:17 -0500 Subject: [PATCH] Add `LetsEncrypt.staging`; run `pre-commit` --- tljh/config_schema.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/tljh/config_schema.py b/tljh/config_schema.py index 6480c7f..e7ae2ba 100644 --- a/tljh/config_schema.py +++ b/tljh/config_schema.py @@ -26,9 +26,7 @@ config_schema = { "timeout": {"type": "integer"}, "every": {"type": "integer"}, "concurrency": {"type": "integer"}, - "users": { - "type": "boolean", - }, + "users": {"type": "boolean"}, "max_age": {"type": "integer"}, "remove_named_servers": {"type": "boolean"}, }, @@ -63,6 +61,7 @@ config_schema = { "type": "array", "items": {"type": "string", "format": "hostname"}, }, + "staging": {"type": "boolean"}, }, }, "TLS": { @@ -93,12 +92,8 @@ config_schema = { "properties": { "ip": {"type": "string", "format": "ipv4"}, "port": {"type": "integer"}, - "username": { - "type": "string", - }, - "password": { - "type": "string", - }, + "username": {"type": "string"}, + "password": {"type": "string"}, }, }, },