gateway-go: add default config and gateway-go.init for background service

Signed-off-by: Yu Fang <newfarry@126.com>
This commit is contained in:
Yu Fang
2020-09-20 16:16:58 +08:00
committed by iotserv
parent 4d39346fb4
commit f2a9965a2c
2 changed files with 33 additions and 1 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh /etc/rc.common
START=99
STOP=10
USE_PROCD=1
PROG="/usr/bin/gateway-go"
CONF="/etc/gateway-go/gateway-go.yaml"
start_service() {
procd_open_instance
procd_set_param command $PROG -c $CONF
procd_set_param stdout 1
procd_set_param stderr 1
procd_set_param respawn
procd_close_instance
}