Merge "Force ncat install for functional/fullstack jobs"

This commit is contained in:
Zuul 2020-09-07 11:01:26 +00:00 committed by Gerrit Code Review
commit b78a953d7f
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
}