home-assistant/virtualization/Docker/scripts/iperf3
2018-05-24 09:25:27 +02:00

11 lines
137 B
Bash
Executable file

#!/bin/bash
# Sets up iperf3.
# Stop on errors
set -e
PACKAGES=(
iperf3
)
apt-get install -y --no-install-recommends ${PACKAGES[@]}