aboutsummaryrefslogtreecommitdiff
path: root/net/gateway-go/files/gateway-go.init
blob: 9b74c7ec62443598ed70b8337a30c8140d7f8053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}