aports/testing/tcpproxy/tcpproxy.initd
Michael Mason 8279802efd testing/tcpproxy
testing/ctags
Adding needed package tcpproxy
ctags needed to build tcpproxy
2009-03-10 20:37:00 +00:00

15 lines
227 B
Plaintext

#!/sbin/runscript
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 $?
}