diff --git a/deploy/cephcsi/image/Dockerfile b/deploy/cephcsi/image/Dockerfile index f4303e5cd..cb93f7f52 100644 --- a/deploy/cephcsi/image/Dockerfile +++ b/deploy/cephcsi/image/Dockerfile @@ -24,7 +24,7 @@ RUN source /build.env && \ RUN ${GOROOT}/bin/go version && ${GOROOT}/bin/go env RUN dnf -y install \ - libcephfs-devel librados-devel librbd-devel \ + librados-devel librbd-devel \ /usr/bin/cc \ make \ git \ diff --git a/docs/development-guide.md b/docs/development-guide.md index 8df6c8895..b68d876c6 100644 --- a/docs/development-guide.md +++ b/docs/development-guide.md @@ -24,8 +24,8 @@ it is **highly** encouraged to: * Ceph-CSI uses the native Ceph libraries through the [go-ceph package](https://github.com/ceph/go-ceph). It is required to install the Ceph C headers in order to compile Ceph-CSI. The packages are called - `libcephfs-devel`, `librados-devel` and `librbd-devel` on many Linux - distributions. See the [go-ceph installaton + `librados-devel` and `librbd-devel` on many Linux distributions. See the + [go-ceph installaton instructions](https://github.com/ceph/go-ceph#installation) for more details. * Run diff --git a/scripts/check-env.sh b/scripts/check-env.sh index 0ed941d71..0b94143b8 100755 --- a/scripts/check-env.sh +++ b/scripts/check-env.sh @@ -43,9 +43,9 @@ if [ -n "$(command -v go)" ]; then # based systems. if ! go run -mod=vendor "${LIBCHECK}" > /dev/null; then if [ -n "${RPM_CMD}" ]; then - echo "Packages libcephfs-devel librbd-devel librados-devel need to be installed" + echo "Packages librbd-devel librados-devel need to be installed" elif [ -n "${DPKG_CMD}" ]; then - echo "Packages libcephfs-dev librbd-dev librados-dev need to be installed" + echo "Packages librbd-dev librados-dev need to be installed" else fail "error can't verify Ceph development headers" fi