mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-05-13 08:36:23 +02:00
- iperf and iperf3 can coexist without special configuration - Use supervise-daemon, sidestepping issues with previous init script's PID directory missing - Fix issue with previous package revision tries to run /usr/bin/iperf (not iperf3) - Note: iperf and iperf3 use different default ports - fix license - lint cleanup
13 lines
220 B
Plaintext
13 lines
220 B
Plaintext
#!/sbin/openrc-run
|
|
|
|
supervisor=supervise-daemon
|
|
|
|
command="/usr/bin/iperf"
|
|
command_args="--server $command_args"
|
|
description="A tool for performing network throughput measurements"
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
}
|