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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -36,6 +36,10 @@ dns_ipv64_add() {
_debug _sub_domain "$_sub_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
_info "Trying to add TXT record"
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 _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
_info "Trying to delete TXT record"
if _ipv64_rest "DELETE" "del_record=$_domain&praefix=$_sub_domain&type=TXT&content=$txtvalue"; then