mirror of
https://github.com/openwrt/packages.git
synced 2025-12-18 16:41:22 +00:00
Note that init script won't do much without configuration provided. The init script comes from the upstream README file. Also add missing dependency. Signed-off-by: Quintin Hill <stuff@quintin.me.uk>
16 lines
281 B
Bash
Executable File
16 lines
281 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
|
|
START=98
|
|
USE_PROCD=1
|
|
|
|
start_service()
|
|
{
|
|
procd_open_instance
|
|
|
|
procd_set_param env BLE2MQTT_CONFIG=/etc/ble2mqtt.json
|
|
procd_set_param command /usr/bin/ble2mqtt
|
|
procd_set_param stdout 1
|
|
procd_set_param stderr 1
|
|
procd_close_instance
|
|
}
|