mirror of
https://github.com/openwrt/routing.git
synced 2026-07-18 07:51:51 +04:00
8f98d53e1d
Conflicts: mcproxy/Makefile mcproxy/files/mcproxy.conf mcproxy/files/mcproxy.init
15 lines
230 B
Bash
15 lines
230 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=50
|
|
USE_PROCD=1
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
|
|
procd_set_param command /usr/sbin/mcproxy
|
|
procd_append_param command -f /etc/mcproxy.conf
|
|
|
|
procd_set_param respawn
|
|
procd_close_instance
|
|
}
|