From 6a9ae2897c6d77a71d1a93495734b767409c3366 Mon Sep 17 00:00:00 2001 From: Alex Chen Date: Tue, 8 Dec 2020 19:34:46 +0800 Subject: [PATCH] spec: add --without-firewalld-zone to configure commandline for old firewalld version Because current firewalld version is too old(< 0.7.0) to support the rule priority setting in the libvirt zone file, so we should add --without-firewalld-zone to configure commandline. More info can be found in the following link: https://github.com/libvirt/libvirt/commit/3b71f2e4. Signed-off-by: Alex Chen --- libvirt.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/libvirt.spec b/libvirt.spec index 01d7913..430de83 100644 --- a/libvirt.spec +++ b/libvirt.spec @@ -56,7 +56,7 @@ %define with_sanlock 0%{!?_without_sanlock:1} %define with_numad 0%{!?_without_numad:0} %define with_firewalld 0%{!?_without_firewalld:1} -%define with_firewalld_zone 0%{!?_without_firewalld_zone:1} +%define with_firewalld_zone 0%{!?_without_firewalld_zone:0} %define with_libssh2 0%{!?_without_libssh2:1} %define with_wireshark 0%{!?_without_wireshark:1} %define with_libssh 0%{!?_without_libssh:1} @@ -99,7 +99,7 @@ Summary: Library providing a simple virtualization API Name: libvirt Version: 6.2.0 -Release: 8 +Release: 9 License: LGPLv2+ URL: https://libvirt.org/ @@ -1867,6 +1867,9 @@ exit 0 %changelog +* Tue Dec 8 2020 Huawei Technologies Co., Ltd +- add --without-firewalld-zone to configure commandline for old firewalld version + * Wed Oct 14 2020 Huawei Technologies Co., Ltd - rpc: gendispatch: handle empty flags - rpc: add support for filtering @acls by uint params -- Gitee