From 86ca9a354c2679a8b6922c600697148aa4498dd2 Mon Sep 17 00:00:00 2001 From: hiska Date: Mon, 12 Feb 2018 18:12:23 +0900 Subject: [PATCH] fix " " to " " to pass travis --- dnsapi/dns_dnsever.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dnsapi/dns_dnsever.sh b/dnsapi/dns_dnsever.sh index e0735e5..c5f522e 100644 --- a/dnsapi/dns_dnsever.sh +++ b/dnsapi/dns_dnsever.sh @@ -235,7 +235,7 @@ dnsever_check() { check="" for n in $matched; do seq=$(printf "%s\n" "$response" | _egrep_o "name=\"seq_$n\" value=\".+\"" | cut -f3 -d= | tr -d \") - old_txt=$(printf "%s\n" "$response" | _egrep_o "name=\"old_txt_$n\" value=\".+\" " | cut -f3 -d= | tr -d "\" ") + old_txt=$(printf "%s\n" "$response" | _egrep_o "name=\"old_txt_$n\" value=\".+\" " | cut -f3 -d= | tr -d "\" ") if [ "$txtvalue" != "$old_txt" ]; then _info "dnsever_check skip seq=$seq fulldomain=$fulldomain due to old_txt=$old_txt is different from txtvalue=$txtvalue skip" continue