From d701cae191a4025292b15c6f908b823ad3b88985 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toke=20H=C3=B8iland-J=C3=B8rgensen?= Date: Wed, 20 Mar 2024 17:17:03 +0100 Subject: [PATCH] net/acme-common: Fix example config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Make sure we quote all strings, and add missing "option" in second example. Signed-off-by: Toke Høiland-Jørgensen --- net/acme-common/Makefile | 2 +- net/acme-common/files/acme.config | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/net/acme-common/Makefile b/net/acme-common/Makefile index f88a2408eb..d0f4a32f1f 100644 --- a/net/acme-common/Makefile +++ b/net/acme-common/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=acme-common -PKG_VERSION:=1.1.0 +PKG_VERSION:=1.1.1 PKG_MAINTAINER:=Toke Høiland-Jørgensen PKG_LICENSE:=GPL-3.0-only diff --git a/net/acme-common/files/acme.config b/net/acme-common/files/acme.config index e88ef2c904..8d1c4934b3 100644 --- a/net/acme-common/files/acme.config +++ b/net/acme-common/files/acme.config @@ -5,9 +5,9 @@ config acme config cert 'example_wildcard' option enabled 0 option staging 1 - list domains example.org - list domains *.example.org - option validation_method dns + list domains "example.org" + list domains "*.example.org" + option validation_method "dns" option dns "dns_freedns" list credentials 'FREEDNS_User="ssladmin@example.org"' list credentials 'FREEDNS_Password="1234"' @@ -17,7 +17,7 @@ config cert 'example_wildcard' config cert 'example_subdomain' option enabled 0 option staging 1 - list domains example.net - list domains www.example.net - list domains mail.example.net - validation_method webroot + list domains "example.net" + list domains "www.example.net" + list domains "mail.example.net" + option validation_method "webroot"