From cd814c0453cf48f586962cf29896d17fccb1c779 Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Wed, 29 May 2019 15:48:05 +0200 Subject: [PATCH] allow disk with LVM for journal devices With this, users can select disks with LVM on it for journal/db devices, which will be necessary for ceph nautilus, since there journals/db/wal will be put on an LV of course when creating an osd, we have to detect if that is ok (probably based on the vg name on it) Signed-off-by: Dominik Csapak --- PVE/API2/Disks.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PVE/API2/Disks.pm b/PVE/API2/Disks.pm index e335a13..ce4acee 100644 --- a/PVE/API2/Disks.pm +++ b/PVE/API2/Disks.pm @@ -137,7 +137,7 @@ __PACKAGE__->register_method ({ my $entry = $disks->{$disk}; if ($type eq 'journal_disks') { next if $entry->{osdid} >= 0; - next if !$entry->{gpt}; + next if !$entry->{gpt} && $entry->{used} ne 'LVM'; } elsif ($type eq 'unused') { next if $entry->{used}; } elsif ($type ne '') {