Browse Source

fix whitespace and UUOC

Stefan Seidel 8 years ago
parent
commit
88ed5e506a
1 changed files with 3 additions and 3 deletions
  1. 3 3
      dnsapi/dns_do.sh

+ 3 - 3
dnsapi/dns_do.sh

@@ -80,7 +80,7 @@ _dns_do_soap() {
   shift
   shift
   # put the parameters to xml
   # put the parameters to xml
   body="<tns:${func} xmlns:tns=\"${DO_URL}\">"
   body="<tns:${func} xmlns:tns=\"${DO_URL}\">"
-  while [ "$1" ] ; do
+  while [ "$1" ]; do
     _k="$1"
     _k="$1"
     shift
     shift
     _v="$1"
     _v="$1"
@@ -108,7 +108,7 @@ _dns_do_soap() {
   _debug2 "SOAP response $response"
   _debug2 "SOAP response $response"
 
 
   # retrieve cookie header
   # retrieve cookie header
-  cat "$HTTP_HEADER" | _egrep_o 'Cookie: [^;]+' | head -1 > "${_cookiejar}"
+  _egrep_o 'Cookie: [^;]+' < "$HTTP_HEADER" | head -1 >"${_cookiejar}"
 
 
   return 0
   return 0
 }
 }
@@ -119,7 +119,7 @@ _get_root() {
 
 
   _all_domains="$(_mktemp)"
   _all_domains="$(_mktemp)"
   _dns_do_soap getDomainList
   _dns_do_soap getDomainList
-  echo "${response}" | tr -d "\n\r\t " | _egrep_o 'domain</key><value[^>]+>[^<]+' | sed -e 's/^domain<\/key><value[^>]+>//g' > "${_all_domains}"
+  echo "${response}" | tr -d "\n\r\t " | _egrep_o 'domain</key><value[^>]+>[^<]+' | sed -e 's/^domain<\/key><value[^>]+>//g' >"${_all_domains}"
 
 
   while true; do
   while true; do
     h=$(printf "%s" "$domain" | cut -d . -f $i-100)
     h=$(printf "%s" "$domain" | cut -d . -f $i-100)