routing/mcproxy/files/mcproxy.init
Steven Barth 8f98d53e1d mcproxy: add initial
Conflicts:

	mcproxy/Makefile
	mcproxy/files/mcproxy.conf
	mcproxy/files/mcproxy.init
2014-03-26 18:16:07 +01:00

14 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
}