From ff9ba98c8802669d096c1cb48c8b60f102c93c61 Mon Sep 17 00:00:00 2001 From: vg Date: Mon, 23 Jun 2025 22:18:00 +0200 Subject: Fix stupid mistake introduced in previous commit While removing contact lines, I also removed the call which registers the account, leading the client to not work anymore. --- acme_dns_tiny.py | 1 + 1 file changed, 1 insertion(+) (limited to 'acme_dns_tiny.py') diff --git a/acme_dns_tiny.py b/acme_dns_tiny.py index 51252e2..fce6fba 100644 --- a/acme_dns_tiny.py +++ b/acme_dns_tiny.py @@ -309,6 +309,7 @@ def get_crt(args): domains = extract_domains_from_csr(args['--csr']) acme = ACME(account_key_path=args['--account-key']) acme.init_sreqs(args['--acme-directory'] or ACME_DEFAULT_DIRECTORY) + acme.register_account() order, order_location = acme.new_order(domains=domains) log.info('Completing each each authorization challenge') -- cgit v1.2.3