Browse Source

Fix add record error

pull/2623/head
Gustav Genberg 5 years ago
committed by GitHub
parent
commit
0ffd5de6fc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dnsapi/dns_unoeuro.sh

2
dnsapi/dns_unoeuro.sh

@ -52,7 +52,7 @@ dns_unoeuro_add() {
fi fi
_info "Adding record" _info "Adding record"
if _uno_rest POST "my/products/$h/dns/records" "{\"name\":\"$fulldomain\",\"type\":\"TXT\",\"data\":\"$txtvalue\",\"ttl\":120}"; then
if _uno_rest POST "my/products/$h/dns/records" "{\"name\":\"$fulldomain\",\"type\":\"TXT\",\"data\":\"$txtvalue\",\"ttl\":120,\"priority\":0}"; then
if _contains "$response" "\"status\": 200" >/dev/null; then if _contains "$response" "\"status\": 200" >/dev/null; then
_info "Added, OK" _info "Added, OK"
return 0 return 0

Loading…
Cancel
Save