mirror of
https://github.com/tunix/digitalocean-dyndns
synced 2024-11-01 00:25:24 +00:00
Compare commits
2 commits
a3553daa2f
...
db6c6d4c00
Author | SHA1 | Date | |
---|---|---|---|
|
db6c6d4c00 | ||
|
6cba88c6d0 |
2 changed files with 19 additions and 15 deletions
|
@ -14,7 +14,7 @@ Pick one of the options below using the following settings:
|
||||||
|
|
||||||
* **DIGITALOCEAN_TOKEN:** The token you generate in DigitalOcean's API settings.
|
* **DIGITALOCEAN_TOKEN:** The token you generate in DigitalOcean's API settings.
|
||||||
* **DOMAIN:** The domain your subdomain is registered at. (i.e. `foo.com` for `home.foo.com`)
|
* **DOMAIN:** The domain your subdomain is registered at. (i.e. `foo.com` for `home.foo.com`)
|
||||||
* **NAME:** Subdomain to use. (name in A record) (i.e. `home` for `home.foo.com`)
|
* **NAME:** Subdomain to use. (name in A record) (i.e. `home` for `home.foo.com`). Multiple subdomains must be separated by semicolons `;`
|
||||||
* **SLEEP_INTERVAL:** Polling time in seconds. (default: 300)
|
* **SLEEP_INTERVAL:** Polling time in seconds. (default: 300)
|
||||||
|
|
||||||
### Docker (Recommended)
|
### Docker (Recommended)
|
||||||
|
|
16
dyndns.sh
16
dyndns.sh
|
@ -19,17 +19,20 @@ while ( true ); do
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
|
-H "Authorization: Bearer $DIGITALOCEAN_TOKEN" \
|
||||||
$dns_list)
|
$dns_list)
|
||||||
record_id=$(echo $domain_records| jq ".domain_records[] | select(.type == \"A\" and .name == \"$NAME\") | .id")
|
|
||||||
record_data=$(echo $domain_records| jq -r ".domain_records[] | select(.type == \"A\" and .name == \"$NAME\") | .data")
|
|
||||||
|
|
||||||
test -z $record_id && die "No record found with given domain name!"
|
|
||||||
|
|
||||||
ip="$(curl -s ipinfo.io/ip)"
|
ip="$(curl -s ipinfo.io/ip)"
|
||||||
data="{\"type\": \"A\", \"name\": \"$NAME\", \"data\": \"$ip\"}"
|
|
||||||
url="$dns_list/$record_id"
|
|
||||||
|
|
||||||
if [[ -n $ip ]]; then
|
if [[ -n $ip ]]; then
|
||||||
|
for sub in ${NAME//;/ }; do
|
||||||
|
record_id=$(echo $domain_records| jq ".domain_records[] | select(.type == \"A\" and .name == \"$sub\") | .id")
|
||||||
|
record_data=$(echo $domain_records| jq -r ".domain_records[] | select(.type == \"A\" and .name == \"$sub\") | .data")
|
||||||
|
|
||||||
|
test -z $record_id && echo "No record found with '$sub' domain name!" && continue
|
||||||
|
|
||||||
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 \
|
||||||
|
@ -38,6 +41,7 @@ while ( true ); do
|
||||||
-d "$data" \
|
-d "$data" \
|
||||||
"$url" &> /dev/null
|
"$url" &> /dev/null
|
||||||
fi
|
fi
|
||||||
|
done
|
||||||
else
|
else
|
||||||
echo "IP wasn't retrieved within allowed interval. Will try $sleep_interval seconds later.."
|
echo "IP wasn't retrieved within allowed interval. Will try $sleep_interval seconds later.."
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue