mirror of
https://github.com/tunix/digitalocean-dyndns
synced 2024-11-01 00:25:24 +00:00
Compare commits
5 commits
7b38d97e38
...
a21767ee62
Author | SHA1 | Date | |
---|---|---|---|
|
a21767ee62 | ||
|
0c4833645b | ||
|
928616e9e0 | ||
|
9b59388a58 | ||
|
8c940d5bd2 |
1 changed files with 15 additions and 5 deletions
20
dyndns.sh
20
dyndns.sh
|
@ -29,7 +29,7 @@ while ( true ); do
|
||||||
for service in ${services[@]}; do
|
for service in ${services[@]}; do
|
||||||
echo "Trying with $service..."
|
echo "Trying with $service..."
|
||||||
|
|
||||||
ip="$(curl -s $service)"
|
ip="$(curl -s $service | grep '[0-9]\{1,3\}\(\.[0-9]\{1,3\}\)\{3\}')"
|
||||||
test -n "$ip" && break
|
test -n "$ip" && break
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -46,12 +46,22 @@ while ( true ); do
|
||||||
# re-enable glob expansion
|
# re-enable glob expansion
|
||||||
set +f
|
set +f
|
||||||
|
|
||||||
test -z $record_id && echo "No record found with '$sub' domain name!" && continue
|
data="{\"type\": \"A\", \"name\": \"$sub\", \"data\": \"$ip\"}"
|
||||||
|
url="$dns_list/$record_id"
|
||||||
|
|
||||||
|
if [[ -z $record_id ]]; then
|
||||||
|
echo "No record found with '$sub' domain name. Creating record, sending data=$data to url=$url"
|
||||||
|
|
||||||
|
new_record=$(curl -s -X POST \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
|
||||||
|
-d "$data" \
|
||||||
|
"$url")
|
||||||
|
|
||||||
|
record_data=$(echo $new_record| jq -r ".data")
|
||||||
|
fi
|
||||||
|
|
||||||
if [[ "$ip" != "$record_data" ]]; then
|
if [[ "$ip" != "$record_data" ]]; then
|
||||||
data="{\"type\": \"A\", \"name\": \"$sub\", \"data\": \"$ip\"}"
|
|
||||||
url="$dns_list/$record_id"
|
|
||||||
|
|
||||||
echo "existing DNS record address ($record_data) doesn't match current IP ($ip), sending data=$data to url=$url"
|
echo "existing DNS record address ($record_data) doesn't match current IP ($ip), sending data=$data to url=$url"
|
||||||
|
|
||||||
curl -s -X PUT \
|
curl -s -X PUT \
|
||||||
|
|
Loading…
Reference in a new issue