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
|
|
}
|