mirror of
https://github.com/openwrt/packages.git
synced 2025-12-21 23:34:31 +04:00
Files such as config file and init script related to OpenWrt
were removed in upstream [1]. Config file was same as umurmur.conf.example,
thus use it and init script, we need to ship our own. Add a simple one.
[1] 209edb5c88
Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
27 lines
403 B
Bash
27 lines
403 B
Bash
#!/bin/sh /etc/rc.common
|
|
|
|
START=90
|
|
STOP=10
|
|
|
|
USE_PROCD=1
|
|
|
|
PROG=/usr/sbin/umurmurd
|
|
CONF=/etc/umurmur/umurmur.conf
|
|
|
|
start_service() {
|
|
procd_open_instance
|
|
procd_set_param command $PROG -d -c $CONF
|
|
procd_set_param respawn
|
|
procd_set_param stdout 1
|
|
procd_set_param stderr 1
|
|
procd_close_instance
|
|
}
|
|
|
|
service_triggers() {
|
|
procd_add_reload_trigger umurmur
|
|
}
|
|
|
|
reload_service() {
|
|
procd_send_signal umurmur
|
|
}
|