[pve-devel] [PATCH manager 02/14] ceph: init: check for nautilus

Dominik Csapak d.csapak at proxmox.com
Tue Jun 18 15:42:46 CEST 2019


Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 PVE/API2/Ceph.pm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/PVE/API2/Ceph.pm b/PVE/API2/Ceph.pm
index 5c38d8f2..885c6452 100644
--- a/PVE/API2/Ceph.pm
+++ b/PVE/API2/Ceph.pm
@@ -296,8 +296,8 @@ __PACKAGE__->register_method ({
 
 	my $version = PVE::Ceph::Tools::get_local_version(1);
 
-	if (!$version || $version < 12) {
-	    die "Ceph Luminous required - please run 'pveceph install'\n";
+	if (!$version || $version < 14) {
+	    die "Ceph Nautilus required - please run 'pveceph install'\n";
 	} else {
 	    PVE::Ceph::Tools::check_ceph_installed('ceph_bin');
 	}
-- 
2.11.0





More information about the pve-devel mailing list