Is acme-client broken (out of date?)

I installed acme-client per this document: https://wiki.freebsd.org/BenWoods/LetsEncrypt

When I run:

acme-client -vNn mydomain.com

I get this error:

acme-client: https://acme-v01.api.letsencrypt.org/acme/new-reg: new-reg
acme-client: https://acme-v01.api.letsencrypt.org/acme/new-reg: bad HTTP: 400
acme-client: transfer buffer: [{ "type": "urn:acme:error:malformed", "detail": "Provided agreement URL [https://letsencrypt.org/documents/LE-SA-v1.1.1-August-1-2016.pdf] does not match current agreement URL [https://letsencrypt.org/documents/LE-SA-v1.2-November-15-2017.pdf]", "status": 400 }] (267 bytes)
acme-client: bad exit: netproc(78682):


Per my Googling, it seems that this is happening to others: https://github.com/ansible/ansible/issues/32929

Can someone confirm? And if so, should we ping the package maintainer?
 
Went ahead and got that working in about 10 minutes flat. Thank you and thanks to blackflow from EFnet's #FreeBSD.
I'll ping the port maintainer anyways :)
 
Code:
     -a agreement
             Use an alternative agreement URL.  The default uses the current
             one, but it may be out of date.
From acme-client(1).
 
Back
Top