0
0
mirror of https://github.com/openwrt/packages.git synced 2025-02-07 09:19:51 +00:00
Stijn Tintel ebf5896009 libiio: add iiod init script
Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
2017-10-20 19:14:25 +03:00

13 lines
187 B
Bash

#!/bin/sh /etc/rc.common
START=90
USE_PROCD=1
PROG=/usr/sbin/iiod
start_service() {
procd_open_instance
procd_set_param command $PROG
procd_set_param respawn
procd_close_instance
}