From 015b32659d94326b4f1624921fc7f50e5cc6b347 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Fri, 21 Aug 2020 12:29:02 +0100 Subject: [PATCH] rpm: always disable ceph on 32-bit MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The logic to disable Ceph on 32-bit was protected by a Fedora conditional. This is redundant as RHEL hasn't shipped any 32-bit platforms for years. Reviewed-by: Jiri Denemark Signed-off-by: Daniel P. Berrangé --- libvirt.spec.in | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/libvirt.spec.in b/libvirt.spec.in index f024f7bfc4..bb74443484 100644 --- a/libvirt.spec.in +++ b/libvirt.spec.in @@ -117,11 +117,9 @@ %define with_storage_zfs 0 %endif -# Ceph dropping support for 32-bit hosts -%if 0%{?fedora} >= 30 - %ifarch %{arm} %{ix86} - %define with_storage_rbd 0 - %endif +# Ceph dropped support for 32-bit hosts +%ifarch %{arm} %{ix86} + %define with_storage_rbd 0 %endif # RHEL doesn't ship OpenVZ, VBox, PowerHypervisor, -- 2.47.2