mirror of
https://github.com/stupidloud/nanopi-openwrt.git
synced 2025-06-03 22:03:43 +08:00
12 lines
186 B
Bash
12 lines
186 B
Bash
#!/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
|
|
}
|