]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
install-deps.sh: install libzbd on focal
authorKefu Chai <kchai@redhat.com>
Thu, 18 Mar 2021 11:43:06 +0000 (19:43 +0800)
committerKefu Chai <kchai@redhat.com>
Fri, 19 Mar 2021 12:35:51 +0000 (20:35 +0800)
WITH_ZBD is enabled for testing the build of zbd bluestore backend, and
we plan to migrate to Ubuntu/Focal for testing "make check", so need to
install libzbd when the distro version is focal.

Signed-off-by: Kefu Chai <kchai@redhat.com>
install-deps.sh

index 482bdf5a5ab0e185589858f03674603a3f954ba9..4f4fb7b24d6576db368786b42ba66f3f652ed7ca 100755 (executable)
@@ -308,6 +308,9 @@ else
                 [ ! $NO_BOOST_PKGS ] && install_boost_on_ubuntu bionic
                 $with_zbd && install_libzbd_on_ubuntu bionic
                 ;;
+            *Focal*)
+                $with_zbd && install_libzbd_on_ubuntu focal
+                ;;
             *)
                 $SUDO apt-get install -y gcc
                 ;;