- tld_names.dat.gz - rename to public_suffix_list.dat.gz - (re)created during build - new location /usr/share - move services files to /etc/ddns - new services - CloudFlare.com-v4 using API-Version 4 without using public_suffix_list.dat - GoDaddy.com - both depending on cURL package - both with modified syntax for option domain ( NEW: [host[.subdom]@]domain.tld ) - new service - Now-DNS.com formerly Now-IP.com - service afraid.org now supports key-auth and basic-auth - new command line options for dynamic_dns_updater.sh and dynamic_dns_updater.sh - adapted ddns.init and ddns.hotplug to new command line options - renaming config options inside section global Signed-off-by: Christian Schoenebeck <christian.schoenebeck@gmail.com>
27 lines
405 B
Bash
Executable file
27 lines
405 B
Bash
Executable file
#!/bin/sh /etc/rc.common
|
|
START=95
|
|
STOP=10
|
|
|
|
boot() {
|
|
return 0
|
|
}
|
|
|
|
reload() {
|
|
/usr/lib/ddns/dynamic_dns_updater.sh -- reload
|
|
return 0
|
|
}
|
|
|
|
restart() {
|
|
/usr/lib/ddns/dynamic_dns_updater.sh -- stop
|
|
sleep 1 # give time to shutdown
|
|
/usr/lib/ddns/dynamic_dns_updater.sh -- start
|
|
}
|
|
|
|
start() {
|
|
/usr/lib/ddns/dynamic_dns_updater.sh -- start
|
|
}
|
|
|
|
stop() {
|
|
/usr/lib/ddns/dynamic_dns_updater.sh -- stop
|
|
return 0
|
|
}
|