aboutsummaryrefslogtreecommitdiffstats
path: root/testing/postfwd/postfwd.initd
blob: 81d8613a170964de144218dc0f06aabb19c93d2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/sbin/openrc-run

command="/usr/sbin/postfwd"
pidfile="/run/postfwd.pid"
command_args="--file ${POSTFWD_CONFIG}
--interface=${POSTFWD_LISTEN}
--port=${POSTFWD_PORT}
--user=${POSTFWD_USER}
--group=${POSTFWD_GROUP}
--pidfile ${pidfile}
${POSTFWD_OPTS}
"
command_args_background="--daemon"

depend() {
	need net
}