pveceph: make installing luminous on PVE 6 experimental

It's only available for the upgrade from 5.4 anyway

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2020-05-28 15:23:28 +02:00
parent 6181940384
commit dea23f32b0

View File

@ -141,6 +141,7 @@ __PACKAGE__->register_method ({
if ($cephver eq 'nautilus') { if ($cephver eq 'nautilus') {
$repolist = "deb http://download.proxmox.com/debian/ceph-nautilus buster main\n"; $repolist = "deb http://download.proxmox.com/debian/ceph-nautilus buster main\n";
} elsif ($cephver eq 'luminous') { } 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"; $repolist = "deb http://download.proxmox.com/debian/ceph-luminous buster main\n";
} elsif ($cephver eq 'octopus') { } elsif ($cephver eq 'octopus') {
die "Not allowed to select version '$cephver'\n" if !$param->{'allow-experimental'}; die "Not allowed to select version '$cephver'\n" if !$param->{'allow-experimental'};