mirror of
https://github.com/coolsnowwolf/packages.git
synced 2025-05-02 04:51:52 +08:00
28 lines
405 B
Bash
Executable File
28 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
|
|
}
|