olsrd: avoid fake startup-error messages
[lede-routing/.git] / mcproxy / files / mcproxy.init
1 #!/bin/sh /etc/rc.common
2
3 START=50
4 USE_PROCD=1
5
6 start_service() {
7         procd_open_instance
8
9         procd_set_param command /usr/sbin/mcproxy
10         procd_append_param command -f /etc/mcproxy.conf
11
12         procd_set_param respawn
13         procd_close_instance
14 }