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