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 <trhoden@redhat.com>
'install_rgw': 'ceph-radosgw',
'install_mds': 'ceph-mds',
'install_mon': 'ceph-mon',
+ 'install_common': 'ceph-common',
}
if distro.is_rpm:
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',