mirror of
https://github.com/openwrt/packages.git
synced 2025-12-19 09:01:22 +00:00
python3-ble2mqtt: add init script
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>
This commit is contained in:
committed by
Tianling Shen
parent
3f977e711e
commit
408502ee0a
15
lang/python/python-ble2mqtt/files/ble2mqtt.init
Executable file
15
lang/python/python-ble2mqtt/files/ble2mqtt.init
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/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
|
||||
}
|
||||
Reference in New Issue
Block a user