From b89b4605df7b1582b1b1c96908c0a9e8c04699d1 Mon Sep 17 00:00:00 2001 From: Lexi Winter Date: Wed, 4 Jun 2025 21:40:57 +0100 Subject: rename $ACME_* to $LFACME_* for consistency with hook variables, and to avoid conflicts with other applications. --- dns.sh.in | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'dns.sh.in') diff --git a/dns.sh.in b/dns.sh.in index e651cec..55a01d0 100644 --- a/dns.sh.in +++ b/dns.sh.in @@ -23,8 +23,8 @@ if [ "$METHOD" != "dns-01" ]; then exit 1 fi -if [ -z "$ACME_DNS_KEYFILE" ]; then - _fatal "ACME_DNS_KEYFILE not configured" +if [ -z "$LFACME_DNS_KEYFILE" ]; then + _fatal "LFACME_DNS_KEYFILE not configured" fi # Add a new record using nsupdate. @@ -32,7 +32,7 @@ _add_record() { local domain="$1" local auth="$2" - $_NSUPDATE -k "$ACME_DNS_KEYFILE" <