Browse Source

fix issue

neilpang 8 years ago
parent
commit
5be3f22d06
1 changed files with 3 additions and 3 deletions
  1. 3 3
      dnsapi/dns_cx.sh

+ 3 - 3
dnsapi/dns_cx.sh

@@ -74,7 +74,7 @@ existing_records() {
     return 1
     return 1
   fi
   fi
 
 
-  seg=$(printf "%s\n" "$response" | _egrep_o "{[^\{]*host\":\"$_sub_domain\"[^\}]*\}")
+  seg=$(printf "%s\n" "$response" | _egrep_o '{[^{]*host":"'"$_sub_domain"'"[^}]*\}')
   _debug seg "$seg"
   _debug seg "$seg"
   if [ -z "$seg" ]; then
   if [ -z "$seg" ]; then
     return 0
     return 0
@@ -82,7 +82,7 @@ existing_records() {
 
 
   if printf "%s" "$response" | grep '"type":"TXT"' >/dev/null; then
   if printf "%s" "$response" | grep '"type":"TXT"' >/dev/null; then
     count=1
     count=1
-    record_id=$(printf "%s\n" "$seg" | _egrep_o "\"record_id\":\"[^\"]*\"" | cut -d : -f 2 | tr -d \")
+    record_id=$(printf "%s\n" "$seg" | _egrep_o '"record_id":"[^"]*"' | cut -d : -f 2 | tr -d \" | _head_n 1)
     _debug record_id "$record_id"
     _debug record_id "$record_id"
     return 0
     return 0
   fi
   fi
@@ -170,7 +170,7 @@ _get_root() {
 _rest() {
 _rest() {
   m=$1
   m=$1
   ep="$2"
   ep="$2"
-  _debug "$ep"
+  _debug ep "$ep"
   url="$REST_API/$ep"
   url="$REST_API/$ep"
   _debug url "$url"
   _debug url "$url"