From b64a9c177f30281dbe363c68d80fb4bfade9ff9e Mon Sep 17 00:00:00 2001 From: Nate Johnston Date: Mon, 8 Jun 2020 17:26:53 -0400 Subject: [PATCH] Force ncat install for functional/fullstack jobs This is not available by default in Ubuntu Focal which we are migrating to in this cycle as a community goal. Change-Id: I2a7d03addc54a05aa310c7b72e6f91a98bf79b65 --- tools/configure_for_func_testing.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/configure_for_func_testing.sh b/tools/configure_for_func_testing.sh index 96026ce07b1..37da6f9a2a0 100755 --- a/tools/configure_for_func_testing.sh +++ b/tools/configure_for_func_testing.sh @@ -120,6 +120,10 @@ function _install_base_deps { PACKAGES=$(echo $PACKAGES | perl -pe 's|python-(?!dev)[^ ]*||g') install_package $PACKAGES fi + + if is_ubuntu && [[ "$DISTRO" != "bionic" ]]; then + install_package "ncat" + fi }