mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 14:23:38 +00:00
19 lines
264 B
Bash
Executable File
19 lines
264 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
START=80
|
|
|
|
run_reboot()
|
|
{
|
|
killall dnspod.sh
|
|
/sbin/dnspod.sh --svc
|
|
}
|
|
|
|
start()
|
|
{
|
|
/sbin/dnspod.sh --svc
|
|
}
|
|
|
|
stop()
|
|
{
|
|
killall dnspod.sh
|
|
}
|