Browse Source

Merge pull request #440 from vjt/patch-1

Fix AWS Route53 API consumer
neil 8 years ago
parent
commit
187ef29914
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dnsapi/dns_aws.sh

+ 1 - 1
dnsapi/dns_aws.sh

@@ -72,7 +72,7 @@ _get_root() {
       fi
 
       if _contains "$response" "<Name>$h.</Name>"; then
-        hostedzone="$(echo "$response" | _egrep_o "<HostedZone>.*<Name>$h.</Name>.*</HostedZone>")"
+        hostedzone="$(echo "$response" | sed 's/<HostedZone>/\n&/g' | _egrep_o "<HostedZone>.*<Name>$h.</Name>.*</HostedZone>")"
         _debug hostedzone "$hostedzone"
         if [ -z "$hostedzone" ]; then
           _err "Error, can not get hostedzone."