mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
15 lines
228 B
Plaintext
15 lines
228 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
DAEMON=/usr/sbin/tcpproxy
|
|
start() {
|
|
ebegin "Starting tcpproxy"
|
|
start-stop-daemon -S -x $DAEMON -- $TCPPROXY_OPTS
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping tcpproxy"
|
|
start-stop-daemon -K -x $DAEMON
|
|
eend $?
|
|
}
|