From 287c1fb15474a948fd5eed32b3743102dc5a0080 Mon Sep 17 00:00:00 2001 From: "julian.filter" Date: Sat, 15 Feb 2020 19:09:13 +0100 Subject: [PATCH] Fix install.sh on Ubuntu 19.10: substitute cgroup-bin with cgroup-tools for Debian/Ubuntu --- util/install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/util/install.sh b/util/install.sh index 736418d..44ba206 100755 --- a/util/install.sh +++ b/util/install.sh @@ -172,9 +172,10 @@ function mn_deps { python-pep8 ${PYPKG}-pexpect ${PYPKG}-tk else # Debian/Ubuntu $install gcc make socat psmisc xterm ssh iperf telnet \ - cgroup-bin ethtool help2man pyflakes pylint pep8 \ + ethtool help2man pyflakes pylint pep8 \ ${PYPKG}-setuptools ${PYPKG}-pexpect ${PYPKG}-tk $install iproute2 || $install iproute + $install cgroup-tools || $install cgroup-bin fi echo "Installing Mininet core"