From: Alfredo Deza Date: Tue, 24 Oct 2017 19:54:11 +0000 (-0400) Subject: ceph-volume lvm.common remove boolean defaults for CLI flags X-Git-Tag: v13.0.1~394^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a7d5965ab532a621f402bad55d45dfed61d90cc5;p=ceph.git ceph-volume lvm.common remove boolean defaults for CLI flags Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/common.py b/src/ceph-volume/ceph_volume/devices/lvm/common.py index e8579ac61ff..109176ca306 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/common.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/common.py @@ -32,12 +32,12 @@ def common_parser(prog, description): ) parser.add_argument( '--bluestore', - action='store_true', default=True, + action='store_true', help='Use the bluestore objectstore', ) parser.add_argument( '--filestore', - action='store_true', default=False, + action='store_true', help='Use the filestore objectstore', ) parser.add_argument(