From: Travis Rhoden Date: Fri, 15 May 2015 14:25:16 +0000 (-0400) Subject: RM-11642: Add install of ceph-common only X-Git-Tag: v1.5.24~5^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=93287b5ab7275f051a65239b89e71b5ce5b45fea;p=ceph-deploy.git RM-11642: Add install of ceph-common only Add options --cli and --common, both of which allow a user to install only the ceph-common package on a node. Signed-off-by: Travis Rhoden --- diff --git a/ceph_deploy/install.py b/ceph_deploy/install.py index 32b869e..6baf747 100644 --- a/ceph_deploy/install.py +++ b/ceph_deploy/install.py @@ -54,6 +54,7 @@ def detect_components(args, distro): 'install_rgw': 'ceph-radosgw', 'install_mds': 'ceph-mds', 'install_mon': 'ceph-mon', + 'install_common': 'ceph-common', } if distro.is_rpm: @@ -505,6 +506,13 @@ def make(parser): help='install the osd component only', ) + version.add_argument( + '--cli', '--common', + dest='install_common', + action='store_true', + help='install the common component only', + ) + version.add_argument( '--all', dest='install_all',