mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-08 10:12:59 +01:00
14 lines
222 B
Bash
14 lines
222 B
Bash
#!/sbin/openrc-run
|
|
|
|
description="TCP/UDP port redirector"
|
|
cfgfile=${cfgfile:-/etc/rinetd.conf}
|
|
command=${command:-/usr/sbin/rinetd}
|
|
command_args="-f -c $cfgfile"
|
|
required_files="$cfgfile"
|
|
|
|
depend() {
|
|
need net
|
|
use dns
|
|
}
|
|
|