Skip to content
Snippets Groups Projects
Commit 02d321f9 authored by Frédéric Leroy's avatar Frédéric Leroy
Browse files

fix iperf3 installation for Ubuntu 14.04

parent 1c81ad97
No related branches found
No related tags found
No related merge requests found
......@@ -263,7 +263,12 @@ check_install_oai_software() {
fi
$SUDO apt-get update
$SUDO apt install -y software-properties-common
# Now, we can add new repository here if needed
case "$(get_distribution_release)" in
"Ubuntu14.04")
# For iperf3
$SUDO add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty-backports universe"
$SUDO apt-get update
esac
$SUDO apt-get install -y \
autoconf \
automake \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment