Merge pull request #134 from chris5560/master
ddns-scripts: minor updates
This commit is contained in:
commit
0e8b2d50d3
3 changed files with 9 additions and 3 deletions
|
@ -1,9 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
. /usr/lib/ddns/dynamic_dns_functions.sh
|
||||
|
||||
if [ "$ACTION" = "ifup" ]; then
|
||||
start_daemon_for_all_ddns_sections "$INTERFACE"
|
||||
. /usr/lib/ddns/dynamic_dns_functions.sh
|
||||
/etc/init.d/ddns enabled && start_daemon_for_all_ddns_sections "$INTERFACE"
|
||||
fi
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,10 @@
|
|||
#!/bin/sh /etc/rc.common
|
||||
START=95
|
||||
|
||||
boot() {
|
||||
return 0
|
||||
}
|
||||
|
||||
start() {
|
||||
. /usr/lib/ddns/dynamic_dns_functions.sh
|
||||
start_daemon_for_all_ddns_sections
|
||||
|
|
|
@ -63,3 +63,6 @@
|
|||
|
||||
# Mythic Beasts (https://www.mythic-beasts.com) Dynamic DNS
|
||||
"mythic-beasts.com" "http://dnsapi4.mythic-beasts.com/?domain=[USERNAME]&password=[PASSWORD]&command=REPLACE%20[DOMAIN]%2060%20A%20DYNAMIC_IP"
|
||||
|
||||
# Securepoint Dynamic-DNS-Service (http://www.spdns.de)
|
||||
"spdns.de" "http://[USERNAME]:[PASSWORD]@update.spdns.de/nic/update?hostname=[DOMAIN]&myip=[IP]"
|
||||
|
|
Loading…
Reference in a new issue