From: Alfredo Deza Date: Tue, 28 Nov 2017 14:22:19 +0000 (-0500) Subject: ceph-volume lvm.activate correct detection and fallback of objectstore flags X-Git-Tag: v13.0.1~68^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=f0ac2dfdbc0a05cff0a5edbedca91274885b7870;p=ceph.git ceph-volume lvm.activate correct detection and fallback of objectstore flags Signed-off-by: Alfredo Deza --- diff --git a/src/ceph-volume/ceph_volume/devices/lvm/activate.py b/src/ceph-volume/ceph_volume/devices/lvm/activate.py index 0a5144ab9551..0a50e7a33cd8 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/activate.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/activate.py @@ -212,6 +212,6 @@ class Activate(object): args = parser.parse_args(self.argv) # Default to bluestore here since defaulting it in add_argument may # cause both to be True - if args.bluestore is None and args.filestore is None: + if not args.bluestore and not args.filestore: args.bluestore = True self.activate(args)