mirror of
https://github.com/openwrt/packages.git
synced 2025-12-19 09:01:22 +00:00
13 lines
173 B
Bash
13 lines
173 B
Bash
#!/bin/sh /etc/rc.common
|
|
START=95
|
|
|
|
start() {
|
|
. /usr/lib/ddns/dynamic_dns_functions.sh
|
|
start_daemon_for_all_ddns_sections
|
|
}
|
|
|
|
stop() {
|
|
killall -9 dynamic_dns_updater.sh
|
|
}
|
|
|