12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
|
||
|
USE_PROCD=1
|
||
|
START=95
|
||
|
STOP=01
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command /bin/sh "/usr/bin/check_wan4.sh"
|
||
|
procd_close_instance
|
||
|
}
|