1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-25 05:26:47 +00:00
Files
core/virtualization/Docker/scripts/iperf3
2018-05-24 09:25:27 +02:00

12 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[@]}