From: Patrick Seidensal Date: Mon, 16 Sep 2019 12:28:06 +0000 (+0200) Subject: install-deps.sh: add support for Ubuntu Disco Dingo X-Git-Tag: v15.1.0~1506^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=95283a60deca6b15765e88ed38a69cdfc39326f6;p=ceph.git install-deps.sh: add support for Ubuntu Disco Dingo Signed-off-by: Patrick Seidensal --- diff --git a/debian/control b/debian/control index ee63e0c6348..0094c9b4274 100644 --- a/debian/control +++ b/debian/control @@ -74,7 +74,7 @@ Build-Depends: cmake (>= 3.5), # Make-Check python-pecan, # Make-Check python-bcrypt, # Make-Check python-six, -# Make-Check python-tox, +# Make-Check python-tox | tox, # Make-Check python-coverage, # Make-Check python-openssl, # Make-Check python-prettytable, diff --git a/install-deps.sh b/install-deps.sh index 23b6e2f97ab..20feccda342 100755 --- a/install-deps.sh +++ b/install-deps.sh @@ -314,6 +314,9 @@ else ensure_decent_gcc_on_ubuntu 9 bionic [ ! $NO_BOOST_PKGS ] && install_boost_on_ubuntu bionic ;; + *Disco*) + [ ! $NO_BOOST_PKGS ] && apt-get install -y libboost1.67-all-dev + ;; *) $SUDO apt-get install -y gcc ;;