mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-08 14:03:06 +00:00
14 lines
179 B
Plaintext
14 lines
179 B
Plaintext
|
#!/bin/sh /etc/rc.common
|
||
|
|
||
|
START=90
|
||
|
|
||
|
USE_PROCD=1
|
||
|
NAME=mtkhnat
|
||
|
PROG=/sbin/mtkhnat
|
||
|
|
||
|
start_service() {
|
||
|
procd_open_instance
|
||
|
procd_set_param command "${PROG}"
|
||
|
procd_close_instance
|
||
|
}
|