From: Travis Rhoden Date: Fri, 31 Jul 2015 18:37:38 +0000 (-0700) Subject: [RM-12541] Drop explicit gdisk in debian/install X-Git-Tag: v1.5.27~8^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=b9f2bddfba5e1458291bddf38508c35723512736;p=ceph-deploy.git [RM-12541] Drop explicit gdisk in debian/install gdisk has been a proper dependency in Ceph packages since before Firefly. There is no need to install it directly. Fixes: #12541 Signed-off-by: Travis Rhoden --- diff --git a/ceph_deploy/hosts/debian/install.py b/ceph_deploy/hosts/debian/install.py index a16b394..3d02824 100644 --- a/ceph_deploy/hosts/debian/install.py +++ b/ceph_deploy/hosts/debian/install.py @@ -99,9 +99,6 @@ def install(distro, version_kind, version, adjust_repos, **kw): 'ceph-common', 'ceph-fs-common', 'radosgw', - # ceph only recommends gdisk, make sure we actually have - # it; only really needed for osds, but minimal collateral - 'gdisk', ], ) @@ -147,9 +144,6 @@ def mirror_install(distro, repo_url, gpg_url, adjust_repos, **kw): 'ceph-mds', 'ceph-common', 'ceph-fs-common', - # ceph only recommends gdisk, make sure we actually have - # it; only really needed for osds, but minimal collateral - 'gdisk', ) pkg_managers.apt(distro.conn, packages) @@ -208,9 +202,6 @@ def repo_install(distro, repo_name, baseurl, gpgkey, **kw): 'ceph-mds', 'ceph-common', 'ceph-fs-common', - # ceph only recommends gdisk, make sure we actually have - # it; only really needed for osds, but minimal collateral - 'gdisk', ) pkg_managers.apt(distro.conn, packages)