From 29de6820a9a7108c8de41036add9332f9b910359 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Mon, 1 Oct 2018 11:54:19 -0400 Subject: [PATCH] ceph-volume lvm.activate pass no_systemd args when detecting objectstore Signed-off-by: Alfredo Deza --- src/ceph-volume/ceph_volume/devices/lvm/activate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ceph-volume/ceph_volume/devices/lvm/activate.py b/src/ceph-volume/ceph_volume/devices/lvm/activate.py index 28b81dda6115d..acebfe123b6bb 100644 --- a/src/ceph-volume/ceph_volume/devices/lvm/activate.py +++ b/src/ceph-volume/ceph_volume/devices/lvm/activate.py @@ -250,9 +250,9 @@ class Activate(object): has_journal = lv.tags.get('ceph.journal_uuid') if has_journal: logger.info('found a journal associated with the OSD, assuming filestore') - return activate_filestore(lvs) + return activate_filestore(lvs, no_systemd=args.no_systemd) logger.info('unable to find a journal associated with the OSD, assuming bluestore') - return activate_bluestore(lvs) + return activate_bluestore(lvs, no_systemd=args.no_systemd) if args.bluestore: activate_bluestore(lvs, no_systemd=args.no_systemd) elif args.filestore: -- 2.39.5