2
0
mirror of https://github.com/acmesh-official/acme.sh synced 2025-08-30 13:58:33 +00:00

convert domain and subdomain to lower case

This commit is contained in:
Roman Lumetsberger
2023-01-31 11:10:42 +01:00
committed by GitHub
parent cb021efaee
commit 7b5d94d062

View File

@@ -36,6 +36,10 @@ dns_ipv64_add() {
_debug _sub_domain "$_sub_domain" _debug _sub_domain "$_sub_domain"
_debug _domain "$_domain" _debug _domain "$_domain"
# convert to lower case
_domain = $(echo "$_domain" | tr '[:upper:]' '[:lower:]')
_sub_domain = $(echo "$_sub_domain" | tr '[:upper:]' '[:lower:]')
# Now add the TXT record # Now add the TXT record
_info "Trying to add TXT record" _info "Trying to add TXT record"
if _ipv64_rest "POST" "add_record=$_domain&praefix=$_sub_domain&type=TXT&content=$txtvalue"; then if _ipv64_rest "POST" "add_record=$_domain&praefix=$_sub_domain&type=TXT&content=$txtvalue"; then
@@ -70,6 +74,10 @@ dns_ipv64_rm() {
_debug _sub_domain "$_sub_domain" _debug _sub_domain "$_sub_domain"
_debug _domain "$_domain" _debug _domain "$_domain"
# convert to lower case
_domain = $(echo "$_domain" | tr '[:upper:]' '[:lower:]')
_sub_domain = $(echo "$_sub_domain" | tr '[:upper:]' '[:lower:]')
# Now delete the TXT record # Now delete the TXT record
_info "Trying to delete TXT record" _info "Trying to delete TXT record"
if _ipv64_rest "DELETE" "del_record=$_domain&praefix=$_sub_domain&type=TXT&content=$txtvalue"; then if _ipv64_rest "DELETE" "del_record=$_domain&praefix=$_sub_domain&type=TXT&content=$txtvalue"; then