Browse Source

Dev (#434)

* do not use script home

* fix format

* fix issue when there is no one records in the domain.
neil 8 years ago
parent
commit
c572ce946b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      dnsapi/dns_cx.sh

+ 2 - 2
dnsapi/dns_cx.sh

@@ -69,11 +69,11 @@ existing_records() {
   _debug "Getting txt records"
   root=$1
   sub=$2
-
+  count=0
   if ! _rest GET "record/$_domain_id?:domain_id?host_id=0&offset=0&row_num=100"; then
     return 1
   fi
-  count=0
+
   seg=$(printf "%s\n" "$response" | _egrep_o "{[^\{]*host\":\"$_sub_domain\"[^\}]*\}")
   _debug seg "$seg"
   if [ -z "$seg" ]; then