mirror of
https://github.com/home-assistant/core.git
synced 2025-06-21 13:37:05 +00:00
12 lines
137 B
Bash
Executable File
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[@]}
|