mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-17 22:52:40 +01:00
19 lines
314 B
Plaintext
19 lines
314 B
Plaintext
#!/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
|
|
}
|
|
|