mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
f2a9965a2c
Signed-off-by: Yu Fang <newfarry@126.com>
18 lines
321 B
Bash
18 lines
321 B
Bash
#!/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
|
|
}
|