From dea23f32b0f97801376ef67dcbbd7fe6b9a78bfb Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 28 May 2020 15:23:28 +0200 Subject: [PATCH] pveceph: make installing luminous on PVE 6 experimental It's only available for the upgrade from 5.4 anyway Signed-off-by: Thomas Lamprecht --- PVE/CLI/pveceph.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/PVE/CLI/pveceph.pm b/PVE/CLI/pveceph.pm index 69e83371..92500253 100755 --- a/PVE/CLI/pveceph.pm +++ b/PVE/CLI/pveceph.pm @@ -141,6 +141,7 @@ __PACKAGE__->register_method ({ if ($cephver eq 'nautilus') { $repolist = "deb http://download.proxmox.com/debian/ceph-nautilus buster main\n"; } elsif ($cephver eq 'luminous') { + die "Not allowed to select version '$cephver'\n" if !$param->{'allow-experimental'}; $repolist = "deb http://download.proxmox.com/debian/ceph-luminous buster main\n"; } elsif ($cephver eq 'octopus') { die "Not allowed to select version '$cephver'\n" if !$param->{'allow-experimental'};