From 8f2883c790146aa65e6ad29d320d143f6d8eea86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E7=8E=BA=E6=BA=90?= Date: Wed, 7 Jun 2023 07:34:13 +0000 Subject: [PATCH] Fix package install warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 王玺源 --- openvswitch.spec | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/openvswitch.spec b/openvswitch.spec index 0c132eb..ec666e0 100644 --- a/openvswitch.spec +++ b/openvswitch.spec @@ -13,7 +13,7 @@ Name: openvswitch Summary: Open vSwitch daemon/database/utilities URL: https://www.openvswitch.org/ Version: 2.17.5 -Release: 3 +Release: 4 License: ASL 2.0 and LGPLv2+ and SISSL Source0: https://www.openvswitch.org/releases/%{name}-%{version}.tar.gz @@ -307,10 +307,12 @@ done %pre if ! getent group openvswith > /dev/null; then groupadd --system openvswith + groupadd openvswith fi if ! getent passwd openvswith > /dev/null; then useradd --system -g openvswith openvswith + useradd -g openvswith openvswith fi %post @@ -454,6 +456,9 @@ fi %{_sysusersdir}/openvswitch.conf %changelog +* Wed Jun 07 2023 wangxiyuan - 2.17.5-4 +- Fix package install warning + * Wed Apr 12 2023 zhangpan - 2.17.5-3 - fix CVE-2023-1668 -- Gitee