Commit ac11ba3d authored by boyanpeychev's avatar boyanpeychev
Browse files

Add DNS API for ClouDNS

parent 3d859865
...@@ -28,7 +28,7 @@ dns_cloudns_add() { ...@@ -28,7 +28,7 @@ dns_cloudns_add() {
_debug host "$host" _debug host "$host"
_debug record "$record" _debug record "$record"
_debug record_id "$record_id" _debug record_id "$record_id"
if [ -z "$record_id" ]; then if [ -z "$record_id" ]; then
_info "Adding the TXT record for $1" _info "Adding the TXT record for $1"
_dns_cloudns_http_api_call "dns/add-record.json" "domain-name=$zone&record-type=TXT&host=$host&record=$record&ttl=60" _dns_cloudns_http_api_call "dns/add-record.json" "domain-name=$zone&record-type=TXT&host=$host&record=$record&ttl=60"
...@@ -126,7 +126,7 @@ _dns_cloudns_get_zone_name() { ...@@ -126,7 +126,7 @@ _dns_cloudns_get_zone_name() {
return 0 return 0
fi fi
i=$((${i} + 1)) i=$((i + 1))
done done
return 1 return 1
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment