summaryrefslogtreecommitdiff
path: root/bigclown-mqtt2influxdb/files/init
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2020-02-11 11:22:37 +0100
committerKarel Kočí <cynerd@email.cz>2020-02-11 11:22:37 +0100
commitf210cba93aa555c39b2583704524f728b89b3e94 (patch)
tree3a9fc67bf8e66df84f7694bbc666a037ae3d0aba /bigclown-mqtt2influxdb/files/init
parent11fd7bb9e59cc8f74507f3bbbc270fe5e259fcd7 (diff)
downloadopenwrt-personal-pkgs-f210cba93aa555c39b2583704524f728b89b3e94.tar.gz
openwrt-personal-pkgs-f210cba93aa555c39b2583704524f728b89b3e94.tar.bz2
openwrt-personal-pkgs-f210cba93aa555c39b2583704524f728b89b3e94.zip
Try to update bigclown tools
Diffstat (limited to 'bigclown-mqtt2influxdb/files/init')
-rw-r--r--bigclown-mqtt2influxdb/files/init21
1 files changed, 21 insertions, 0 deletions
diff --git a/bigclown-mqtt2influxdb/files/init b/bigclown-mqtt2influxdb/files/init
new file mode 100644
index 0000000..5c95600
--- /dev/null
+++ b/bigclown-mqtt2influxdb/files/init
@@ -0,0 +1,21 @@
+#!/bin/sh /etc/rc.common
+
+START=99
+STOP=1
+
+USE_PROCD=1
+
+PROG=/usr/bin/mqtt2influxdb
+CONF=/etc/bigclown-mqtt2influxdb.yml
+
+start_service() {
+ procd_open_instance
+ procd_set_param command "$PROG" -d -c "$CONF"
+ procd_set_param stdout 1
+ procd_set_param stderr 1
+ procd_close_instance
+}
+
+stop_service() {
+ service_stop "$PROG"
+}