- Fix CI gating tests

This commit is contained in:
Oyvind Albrigtsen 2023-07-20 13:56:41 +02:00
parent cbb154012c
commit 136b379eee
2 changed files with 4 additions and 4 deletions

View File

@ -60,7 +60,7 @@
Name: fence-agents Name: fence-agents
Summary: Set of unified programs capable of host isolation ("fencing") Summary: Set of unified programs capable of host isolation ("fencing")
Version: 4.10.0 Version: 4.10.0
Release: 50%{?alphatag:.%{alphatag}}%{?dist} Release: 51%{?alphatag:.%{alphatag}}%{?dist}
License: GPLv2+ and LGPLv2+ License: GPLv2+ and LGPLv2+
URL: https://github.com/ClusterLabs/fence-agents URL: https://github.com/ClusterLabs/fence-agents
Source0: https://fedorahosted.org/releases/f/e/fence-agents/%{name}-%{version}.tar.gz Source0: https://fedorahosted.org/releases/f/e/fence-agents/%{name}-%{version}.tar.gz
@ -1472,7 +1472,7 @@ are located on corosync cluster nodes.
%endif %endif
%changelog %changelog
* Thu Jul 20 2023 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.10.0-50 * Thu Jul 20 2023 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.10.0-51
- bundled dateutil: fix tarfile CVE-2007-4559 - bundled dateutil: fix tarfile CVE-2007-4559
Resolves: rhbz#2217902 Resolves: rhbz#2217902
- fence_ipmilan: fix typos in metadata - fence_ipmilan: fix typos in metadata

View File

@ -12,7 +12,7 @@ echo "INFO: pcs: agents available..."
declare -A libs=( declare -A libs=(
# aliyun # aliyun
["aliyunsdkcore"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aliyun');" ["aliyunsdkcore"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aliyun');"
["aliyun-python-sdk-ecs"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aliyun');" ["aliyunsdkecs"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aliyun');"
["aliyuncli"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aliyun');" ["aliyuncli"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aliyun');"
# aws # aws
["boto3"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aws');" ["boto3"]="sys.path.insert(0, '/usr/lib/fence-agents/support/aws');"
@ -23,7 +23,7 @@ declare -A libs=(
["pexpect"]="sys.path.insert(0, '/usr/lib/fence-agents/support/common');" ["pexpect"]="sys.path.insert(0, '/usr/lib/fence-agents/support/common');"
["suds"]="sys.path.insert(0, '/usr/lib/fence-agents/support/common');" ["suds"]="sys.path.insert(0, '/usr/lib/fence-agents/support/common');"
# google # google
["google-api-python-client"]="sys.path.insert(0, '/usr/lib/fence-agents/support/google');" ["googleapiclient"]="sys.path.insert(0, '/usr/lib/fence-agents/support/google');"
["pyroute2"]="sys.path.insert(0, '/usr/lib/fence-agents/support/google');" ["pyroute2"]="sys.path.insert(0, '/usr/lib/fence-agents/support/google');"
) )