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
This commit is contained in:
Nate Johnston 2020-06-08 17:26:53 -04:00 committed by Bernard Cafarelli
parent 945a244588
commit b64a9c177f
1 changed files with 4 additions and 0 deletions

View File

@ -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
}