summaryrefslogtreecommitdiffstats
path: root/acme_dns_tiny.py
diff options
context:
space:
mode:
authorvg <vgm+dev@devys.org>2025-06-23 22:18:00 +0200
committervg <vgm+dev@devys.org>2025-06-23 22:18:00 +0200
commitff9ba98c8802669d096c1cb48c8b60f102c93c61 (patch)
tree5169026b3c00eb6ac7ff632504aac0516e128fb2 /acme_dns_tiny.py
parentc2e9d2acf3159ebd6ff6ed28513945eb62d05265 (diff)
downloadacme-dns-tiny-ff9ba98c8802669d096c1cb48c8b60f102c93c61.tar.gz
acme-dns-tiny-ff9ba98c8802669d096c1cb48c8b60f102c93c61.tar.bz2
acme-dns-tiny-ff9ba98c8802669d096c1cb48c8b60f102c93c61.zip
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.
Diffstat (limited to 'acme_dns_tiny.py')
-rw-r--r--acme_dns_tiny.py1
1 files changed, 1 insertions, 0 deletions
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')