mirror of
https://github.com/RogerSik/godaddy_ddns.git
synced 2024-11-24 01:20:27 +01:00
echo added
This commit is contained in:
parent
6d2237fb79
commit
02ce78927c
@ -33,7 +33,7 @@ echo "currentIp:" $currentIp
|
|||||||
|
|
||||||
if [ $dnsIp != $currentIp ];
|
if [ $dnsIp != $currentIp ];
|
||||||
then
|
then
|
||||||
# echo "Ips are not equal" ## debug
|
echo "Ips are not equal"
|
||||||
request='[{"data":"'$currentIp'","name":"'$name'","ttl":600,"type":"A"}]'
|
request='[{"data":"'$currentIp'","name":"'$name'","ttl":600,"type":"A"}]'
|
||||||
# echo $request # debug
|
# echo $request # debug
|
||||||
nresult=$(curl -i -s -X PUT \
|
nresult=$(curl -i -s -X PUT \
|
||||||
@ -41,4 +41,5 @@ if [ $dnsIp != $currentIp ];
|
|||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d $request "https://api.godaddy.com/v1/domains/$domain/records/A/$name")
|
-d $request "https://api.godaddy.com/v1/domains/$domain/records/A/$name")
|
||||||
echo $nresult
|
echo $nresult
|
||||||
|
echo "dns record updated"
|
||||||
fi
|
fi
|
||||||
|
@ -33,7 +33,7 @@ echo "currentIp:" $currentIp
|
|||||||
|
|
||||||
if [ $dnsIp != $currentIp ];
|
if [ $dnsIp != $currentIp ];
|
||||||
then
|
then
|
||||||
# echo "Ips are not equal" # debug
|
echo "Ips are not equal"
|
||||||
request='[{"data":"'$currentIp'","name":"'$name'","ttl":600,"type":"AAAA"}]'
|
request='[{"data":"'$currentIp'","name":"'$name'","ttl":600,"type":"AAAA"}]'
|
||||||
# echo $request # debug
|
# echo $request # debug
|
||||||
result=$(curl -i -s -X PUT \
|
result=$(curl -i -s -X PUT \
|
||||||
@ -41,4 +41,5 @@ if [ $dnsIp != $currentIp ];
|
|||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d $request "https://api.godaddy.com/v1/domains/$domain/records/AAAA/$name")
|
-d $request "https://api.godaddy.com/v1/domains/$domain/records/AAAA/$name")
|
||||||
echo $nresult
|
echo $nresult
|
||||||
|
echo "dns record updated"
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user