From 485f9f974a25bae1e7839d7d13b5f6cc43cb7ae8 Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Thu, 17 Nov 2022 17:31:58 +0100 Subject: [PATCH] pkgdep/freebsd: Update name of the ceph package Under latest 13.1 builds ceph package is now available as "ceph14" so try to install it when the first attempt fails. Signed-off-by: Michal Berger Change-Id: I4301f357d2c04881a1e8839c644cb000ba74e4e6 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15495 Reviewed-by: Pawel Piatek Reviewed-by: Kamil Godzwon Reviewed-by: Krzysztof Karas Reviewed-by: Tomasz Zawadzki Reviewed-by: Jim Harris Tested-by: SPDK CI Jenkins Community-CI: Mellanox Build Bot --- scripts/pkgdep/freebsd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pkgdep/freebsd.sh b/scripts/pkgdep/freebsd.sh index 23d9fc11cff..d4f6b63d6e6 100755 --- a/scripts/pkgdep/freebsd.sh +++ b/scripts/pkgdep/freebsd.sh @@ -29,5 +29,5 @@ fi if [[ $INSTALL_RBD == "true" ]]; then # Additional dependencies for RBD bdev in NVMe over Fabrics - pkg install -y ceph + pkg install -y ceph || pkg install -y ceph14 fi