aports/community/sniproxy/sniproxy.initd
2015-10-06 07:19:06 +00:00

20 lines
332 B
Plaintext

#!/sbin/openrc-run
pidfile="/var/run/${SVCNAME}/${SVCNAME}.pid"
command="/usr/sbin/${SVCNAME}"
: ${conf_file:="/etc/sniproxy/sniproxy.conf"}
depend() {
need net
after firewall
}
start() {
ebegin "Starting $SVCNAME"
start-stop-daemon --start \
--quiet --pidfile $pidfile --exec $command \
-- -c "$conf_file" "$@"
eend
}