1
0
mirror of https://github.com/elisspace/core.git synced 2026-08-31 00:22:12 +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[@]}