gating: fix the wrong ovs link for el9

Resolves: rhbz#1970175

While at it, also fix the version in libteam.spec

Signed-off-by: Xin Long <lxin@redhat.com>
This commit is contained in:
Xin Long 2021-06-17 14:00:52 -04:00
parent 0ca5bfeb9a
commit 25adb0abaf
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
Name: libteam
Version: 1.31
Release: 6%{?dist}
Release: 7%{?dist}
Summary: Library for controlling team network device
License: LGPLv2+
URL: http://www.libteam.org
@ -134,6 +134,9 @@ install -p -m 755 utils/bond2team $RPM_BUILD_ROOT%{_bindir}/bond2team
%{_sysconfdir}/sysconfig/network-scripts/ifdown-TeamPort
%changelog
* Thu Jun 17 2021 Xin Long <lxin@redhat.com> - 1.31-7
- gating: fix the wrong link of openvswitch for RHEL-9 [1970175]
* Mon May 24 2021 Hangbin Liu <haliu@redhat.com> - 1.31-6
- team2bond: fix min_ports format and add lacp_key [1937155]

View File

@ -67,8 +67,8 @@ libteam_start_ovs()
local url=http://download-node-02.eng.bos.redhat.com/brewroot/packages
rpm -qa | grep openvswitch >> libteam.log || \
yum install -y $url/openvswitch2.11/2.11.0/50.el8fdp/x86_64/openvswitch2.11-2.11.0-50.el8fdp.x86_64.rpm \
$url/openvswitch-selinux-extra-policy/1.0/23.el8fdp/noarch/openvswitch-selinux-extra-policy-1.0-23.el8fdp.noarch.rpm >> libteam.log
yum install -y $url/openvswitch2.15/2.15.0/16.el9fdp/x86_64/openvswitch2.15-2.15.0-16.el9fdp.x86_64.rpm \
$url/openvswitch-selinux-extra-policy/1.0/29.el9fdp/noarch/openvswitch-selinux-extra-policy-1.0-29.el9fdp.noarch.rpm
systemctl start openvswitch
}