Minor correction to logging with new domain change

This commit is contained in:
Eric Renfro 2023-10-31 18:50:18 -04:00
parent ce87e9a990
commit d8714c02ab
Signed by: psi-jack
GPG Key ID: 14977F3A50D9A5BF
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ _update_dns_linode_v4_get_record_id() {
if _update_dns_linode_v4_get_domain_id "$DIP_DOMAIN"; then
if valid_ipv4 "$DIP_CUR_IP"; then
log "Updating Linode DNS IPv4 Record: ${DIP_RECORD} to ${DIP_CUR_IP}"
log "Updating Linode DNS IPv4 Record: ${DIP_RECORD}.${DIP_DOMAIN} to ${DIP_CUR_IP}"
if _update_dns_linode_v4_get_record_id "${DIP_DOMAIN_ID}" "A" "${DIP_RECORD}"
then
@ -107,7 +107,7 @@ if _update_dns_linode_v4_get_domain_id "$DIP_DOMAIN"; then
fi
if valid_ipv6 "$DIP_CUR_IP"; then
log "Updating Linux DNS IPv6 Record: ${DIP_RECORD} to ${DIP_CUR_IP}"
log "Updating Linux DNS IPv6 Record: ${DIP_RECORD}.${DIP_DOMAIN} to ${DIP_CUR_IP}"
if _update_dns_linode_v4_get_record_id "${DIP_DOMAIN_ID}" "AAAA" "${DIP_RECORD}"
then