diff --git a/ceph/ceph-osd-activate-all b/ceph/ceph-osd-activate-all index 95ef7bd..2765e93 100755 --- a/ceph/ceph-osd-activate-all +++ b/ceph/ceph-osd-activate-all @@ -28,4 +28,10 @@ for dev in $(fdisk -l | awk '$6 ~/Ceph/ { print $1 }'); do fi done +# LVM based +for osdid in $(lvs -o lv_tags | grep ceph.block_device| sed -e 's/.*ceph.osd_id=//' -e 's/,.*//'); do + ceph-volume lvm activate --no-systemd $osdid + /opt/ungleich-tools/monit-ceph-create-start "osd.$osdid" +done + rmdir "$tmpdir"