mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-18 17:57:08 +02:00
13 lines
222 B
Bash
13 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
|
|
}
|
|
|