From: William Lallemand Date: Mon, 22 Sep 2025 17:14:54 +0000 (+0200) Subject: BUG/MINOR: acme/cli: wrong description for "acme challenge_ready" X-Git-Tag: v3.3-dev9~46 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fbffd2e25f2ec2333bf70f018d5617d62360c2ab;p=thirdparty%2Fhaproxy.git BUG/MINOR: acme/cli: wrong description for "acme challenge_ready" The "acme challenge_ready" command mistakenly use the description of the "acme status" command. This patch adds the right description. Must be backported to 3.2. --- diff --git a/src/acme.c b/src/acme.c index 7fb270a90..e71071692 100644 --- a/src/acme.c +++ b/src/acme.c @@ -2795,7 +2795,7 @@ static int cli_acme_ps(char **args, char *payload, struct appctx *appctx, void * static struct cli_kw_list cli_kws = {{ },{ { { "acme", "renew", NULL }, "acme renew : renew a certificate using the ACME protocol", cli_acme_renew_parse, NULL, NULL, NULL, 0 }, { { "acme", "status", NULL }, "acme status : show status of certificates configured with ACME", cli_acme_ps, cli_acme_status_io_handler, NULL, NULL, 0 }, - { { "acme", "challenge_ready", NULL }, "acme challenge_ready domain : show status of certificates configured with ACME", cli_acme_chall_ready_parse, NULL, NULL, NULL, 0 }, + { { "acme", "challenge_ready", NULL }, "acme challenge_ready domain : notify HAProxy that the ACME challenge is ready", cli_acme_chall_ready_parse, NULL, NULL, NULL, 0 }, { { NULL }, NULL, NULL, NULL } }};