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 <d.csapak@proxmox.com>
This commit is contained in:
committed by
Thomas Lamprecht
parent
08335d55c9
commit
cd814c0453
@ -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 '') {
|
||||
|
||||
Reference in New Issue
Block a user