19 lines
264 B
Plaintext
19 lines
264 B
Plaintext
|
|
#!/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
|
||
|
|
}
|