Browse Source

gdnsdk: overview page as singleline in regexp-match

pull/2353/head
Source 7 years ago
parent
commit
d1fe41f02c
  1. 3
      dnsapi/dns_gdnsdk.sh

3
dnsapi/dns_gdnsdk.sh

@ -1,4 +1,5 @@
#!/usr/bin/env sh
set -x
#Author: Herman Sletteng
#Report Bugs here: https://github.com/loial/acme.sh
#
@ -159,7 +160,7 @@ _successful_update() {
_findentry() {
#returns id of dns entry, if it exists
_myget "action=dns_primary_changeDNSsetup&user_domain=$_domain"
_id=$(echo "$_result" | _egrep_o "<td>$1</td>\s*<td>$2</td>[^?]*[^&]*&id=[^&]*" | sed 's/^.*=//')
_id=$(echo "$_result" | tr '\\n' ' ' | _egrep_o "<td>$1</td>\s*<td>$2</td>[^?]*[^&]*&id=[^&]*" | sed 's/^.*=//')
if [ -n "$_id" ]; then
_debug "Entry found with _id=$_id"
return 0

Loading…
Cancel
Save