Skip to content

Commit

Permalink
removed curly braces to force new push on Github (kicking of DNS acti…
Browse files Browse the repository at this point in the history
…on/workflow)
  • Loading branch information
Eddict committed Feb 24, 2024
1 parent cd3c0e0 commit 4e8f0ba
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dnsapi/dns_da_ef.sh
Original file line number Diff line number Diff line change
@@ -31,17 +31,17 @@
# Usage: dns_da_ef_add _acme-challenge.www.example.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
# Used to add txt record
dns_da_ef_add() {
fulldomain="${1}"
txtvalue="${2}"
fulldomain="$1"
txtvalue="$2"
_debug "Calling: dns_da_ef_add() '${fulldomain}' '${txtvalue}'"
_DA_credentials && _DA_getDomainInfo && _DA_addTxt
}

# Usage: dns_da_ef_rm _acme-challenge.www.example.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
# Used to remove the txt record after validation
dns_da_ef_rm() {
fulldomain="${1}"
txtvalue="${2}"
fulldomain="$1"
txtvalue="$2"
_debug "Calling: dns_da_ef_rm() '${fulldomain}' '${txtvalue}'"
_DA_credentials && _DA_getDomainInfo && _DA_rmTxt
}

0 comments on commit 4e8f0ba

Please sign in to comment.