certbot 4.0.0 via apt on Debian 13.
I'm running a battle-tested certbot certonly + Let's Encrypt for VPS certificates - no issues there at all, and it works really well.
I am looking into using alternate ACME CAs to load balance, compare & contrast etc. I am using certbot certonly + Actalis to test the water, like so:
sudo /usr/bin/certbot \
certonly \
--agree-tos \
--cert-name "$fqdn" \
--config-dir /etc/certbot/actalis.com/ \
--domains "$fqdn" \
--eab-kid "$eab_kid" \
--eab-hmac-key "$eab_hmac" \
--email "$eab_email" \
--logs-dir /var/log/certbot/actalis.com/ \
--noninteractive \
--server https://acme-api.actalis.com/acme/directory \
--webroot \
--webroot-path "$www_prefix"/www/heartbeat/_well-known \
All the variables are set prior to the certbot certonly run, and due to a CAA record typo on my part (I had it set to actalis.com when it should be actalis.it), I get the following error:
Saving debug log to /var/log/certbot/actalis.com/letsencrypt.log
Requesting a certificate for darwin.tlsvps.com
An unexpected error occurred:
Blocking CAA record(s) found on one or more of the specified domains
Ask for help or search for solutions at https://community.letsencrypt.org. See the logfile /var/log/certbot/actalis.com/letsencrypt.log or re-run Certbot with -v for more details.
Note the letsencrypt.log filename. The directory path is correct, but the filename (letsencrypt.log) presumably uses its hard-coded default.
How can I set the log file name for non-LE certbot certonly operations?
I can't find anything in certbot --help all that relates to changing the filename. I'm sure I'm missing something obvious somewhere…and I'm getting snowblind.
I'd really appreciate any guidance or pointers on whether the log file can be renamed.
Thank you.