1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-16 12:23:59 +02:00
openwrt-packages/net/ostiary/files/ostiaryd.init
Chris Geraghty 2478868db9 ostiary: Initial package creation
Signed-off-by: Chris Geraghty <CGretski@hotmail.com>
2019-06-11 07:37:07 +01:00

20 lines
244 B
Bash
Executable File

#!/bin/sh /etc/rc.common
START=99
STOP=85
USE_PROCD=1
start_service()
{
procd_open_instance
procd_set_param command /usr/bin/ostiaryd -c /etc/ostiary.cfg
procd_close_instance
}
reload_service() {
procd_send_signal ostiaryd
}