|
@ -16,8 +16,8 @@ dynv6_api="https://dynv6.com/api/v2" |
|
|
# Please Read this guide first: https://github.com/Neilpang/acme.sh/wiki/DNS-API-Dev-Guide |
|
|
# Please Read this guide first: https://github.com/Neilpang/acme.sh/wiki/DNS-API-Dev-Guide |
|
|
#Usage: dns_dynv6_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs" |
|
|
#Usage: dns_dynv6_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs" |
|
|
dns_dynv6_add() { |
|
|
dns_dynv6_add() { |
|
|
fulldomain=$1 |
|
|
|
|
|
txtvalue=$2 |
|
|
|
|
|
|
|
|
fulldomain=$(echo "$1" | tr 'A-Z' 'a-z') |
|
|
|
|
|
txtvalue="$2" |
|
|
_info "Using dynv6 api" |
|
|
_info "Using dynv6 api" |
|
|
_debug fulldomain "$fulldomain" |
|
|
_debug fulldomain "$fulldomain" |
|
|
_debug txtvalue "$txtvalue" |
|
|
_debug txtvalue "$txtvalue" |
|
@ -50,8 +50,8 @@ dns_dynv6_add() { |
|
|
#Usage: fulldomain txtvalue |
|
|
#Usage: fulldomain txtvalue |
|
|
#Remove the txt record after validation. |
|
|
#Remove the txt record after validation. |
|
|
dns_dynv6_rm() { |
|
|
dns_dynv6_rm() { |
|
|
fulldomain=$1 |
|
|
|
|
|
txtvalue=$2 |
|
|
|
|
|
|
|
|
fulldomain=$(echo "$1" | tr 'A-Z' 'a-z') |
|
|
|
|
|
txtvalue="$2" |
|
|
_info "Using dynv6 API" |
|
|
_info "Using dynv6 API" |
|
|
_debug fulldomain "$fulldomain" |
|
|
_debug fulldomain "$fulldomain" |
|
|
_debug txtvalue "$txtvalue" |
|
|
_debug txtvalue "$txtvalue" |
|
|