pkgdep/rhel: install missing sshpass package

Install sshpass package from third party repo
as it is missing from official epel main x86_64
repository for Centos8.

Signed-off-by: Kamil Godzwon <kamilx.godzwon@intel.com>
Change-Id: Ide1899393eabb838bcb686c30dc58e4538f10c12
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/12685
Reviewed-by: Michal Berger <michallinuxstuff@gmail.com>
Reviewed-by: Pawel Piatek <pawelx.piatek@intel.com>
Reviewed-by: Karol Latecki <karol.latecki@intel.com>
Reviewed-by: <qun.wan@intel.com>
Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
Kamil Godzwon 2022-05-14 06:17:33 -04:00 committed by Tomasz Zawadzki
parent e3377795c3
commit 0fb87395b0

View File

@ -47,7 +47,6 @@ packages=(
socat
openssl
sshfs
sshpass
python3-pandas
rpm-build
iptables
@ -67,6 +66,12 @@ if [[ $OSID != centos && $OSID != rocky ]] || [[ $OSVERSION != 8* ]]; then
packages+=(btrfs-progs)
fi
if [[ $OSID == centos && $OSVERSION == 8* ]]; then
packages+=("https://rpmfind.net/linux/centos/8-stream/AppStream/x86_64/os/Packages/sshpass-1.09-4.el8.x86_64.rpm")
else
packages+=(sshpass)
fi
if [[ $OSID == fedora ]] && ((OSVERSION >= 34)); then
packages+=(bpftrace)
fi