Browse Source

Fix CI fails

pull/1053/head
hiska 8 years ago
committed by GitHub
parent
commit
84fdde7f46
  1. 14
      dnsapi/dns_dnsever.sh

14
dnsapi/dns_dnsever.sh

@ -63,7 +63,11 @@ dns_dnsever_rm() {
#################### Private functions below ##################################
dnsever_txt() {
action="$1"; login_id="$2"; login_password="$3"; fulldomain="$4"; txt="$5"
action="$1"
login_id="$2"
login_password="$3"
fulldomain="$4"
txt="$5"
_inithttp
@ -185,10 +189,12 @@ dnsever_txt(){
}
dnsever_select_user_domain() {
fulldomain="$1"; response="$2"
fulldomain="$1"
response="$2"
domains=$(printf "%s\n" "$response" | grep OPTION | sed -n -e "s/^.*value=['\"]\(.*\)['\"].*/\1/p" | grep -v "^$")
nmax=0; selected=""
nmax=0
selected=""
for domain in $domains; do
if echo "$fulldomain" | grep -q "$domain\$"; then
n=${#domain}
@ -203,7 +209,7 @@ dnsever_select_user_domain(){
dnsever_check() {
fulldomain="$1"
old_txt="$1"
old_txt="$2"
response="$3"
matched=$(printf "%s\n" "$response" | grep "$fulldomain" | sed -n -e "s/^.*name=['\"]\(.*\)['\"].*value.*$/\1/p" | sed 's/domain_for_txt_//g')

Loading…
Cancel
Save