1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-17 21:03:56 +02:00
openwrt-packages/net/smcroute/files/smcroute.init
Moritz Warning da334fa23d smcroute: add new package
Signed-off-by: Moritz Warning <moritzwarning@web.de>
2019-05-02 21:07:17 +02:00

14 lines
222 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=99
USE_PROCD=1
PROG=/usr/sbin/smcrouted
start_service() {
procd_open_instance
procd_set_param command $PROG -n
procd_set_param stderr 1
procd_set_param stdout 1
procd_close_instance
}