Commit 02d321f9 authored by Frédéric Leroy's avatar Frédéric Leroy

fix iperf3 installation for Ubuntu 14.04

parent 1c81ad97
...@@ -263,7 +263,12 @@ check_install_oai_software() { ...@@ -263,7 +263,12 @@ check_install_oai_software() {
fi fi
$SUDO apt-get update $SUDO apt-get update
$SUDO apt install -y software-properties-common $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 \ $SUDO apt-get install -y \
autoconf \ autoconf \
automake \ automake \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment