From b23305d5ad8b131225cb94b3c0bb33ddbfd65c15 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Tue, 5 Jul 2022 08:38:08 +0200 Subject: [PATCH] pveceph install: clarify comment for conditional ceph-volume inclusion Signed-off-by: Thomas Lamprecht --- PVE/CLI/pveceph.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PVE/CLI/pveceph.pm b/PVE/CLI/pveceph.pm index 5c21bf7e..afcc67e0 100755 --- a/PVE/CLI/pveceph.pm +++ b/PVE/CLI/pveceph.pm @@ -182,7 +182,8 @@ __PACKAGE__->register_method ({ nvme-cli ); - # when installing versions older than quincy, 'ceph-volume' does not exists. don't include it + # got split out with quincy and is required by PVE tooling, conditionally exclude it for older + # FIXME: remove condition with PVE 8.0, i.e., once we only support quincy+ new installations if ($cephver ne 'octopus' and $cephver ne 'pacific') { push @ceph_packages, 'ceph-volume'; }