Browse Source

Fixed CI fails again

pull/1053/head
hiska 8 years ago
committed by GitHub
parent
commit
0fe800ef53
  1. 4
      dnsapi/dns_dnsever.sh

4
dnsapi/dns_dnsever.sh

@ -160,14 +160,14 @@ dnsever_txt() {
_info "dnsever_txt:$action skey=$skey user_domain=$user_domain selected_menu=edittxt command=delete_txt$(echo "$check" | sed 's/\&/ /g')"
response=$(_post "skey=$skey&user_domain=$user_domain&selected_menu=edittxt&command=delete_txt&$check" "https://kr.dnsever.com/start.html")
if [ $? != 0 ] || [ -z "&response" ]; then
if [ $? != 0 ] || [ -z "$response" ]; then
_err "dnsever_txt:$action ERROR failed to delete $fulldomain=$txt from DNSEver"
response=$(_post "skey=$skey" "https://kr.dnsever.com/logout.php")
return 1
fi
response=$(_post "skey=$skey&user_domain=$user_domain&selected_menu=edittxt" "https://kr.dnsever.com/start.html")
if [ $? != 0 ] || [ -z "&response" ]; then
if [ $? != 0 ] || [ -z "$response" ]; then
_err "dnsever_txt:$action ERROR failed to get $fulldomain=$txt from DNSEver"
response=$(_post "skey=$skey" "https://kr.dnsever.com/logout.php")
return 1

Loading…
Cancel
Save