forked from pool/resource-agents
Adapt drop-deprecated-agents.patch (jsc#PED-8737) - Normalize log format from RAs with one of Pacemaker (bsc#1217456) Remove 0006-Revert-ocf_log-use-same-log-format-as-pacemaker.patch - Remove 0007-Request-to-add-gcp-vpc-move-route.patch adapt BuildRequires instead of: Add python module requirements: pyroute2 requests urllib3 - Adapt configure if python flavor is python311: add patch: use-python-311.patch - Update to version 4.15.1+git0.a6ccb93a: * build: update ChangeLog for 4.15.1 * IPaddr2: dont fail with "IPv4 does not support lvs_ipv6_addrlabel" error, as the parameter is not used in IPv4 scenarioes * build: update ChangeLog for 4.15.0 * spec: use /usr/sbin paths for Fedora 41+ * build: dont build powervs-subnet if dependencies are missing * build: update ChangeLog for 4.15.0-rc1 - Update to version 4.14.0+git46.eb83df84: * send_arp.libnet: use calloc() to avoid truncating pidfilename if it is more than 64 chars long * configure: fix enable_ansi check * powervs-subnet resource agent: improvements on virtual server status collection, and subnet - port handling. * ocf-shellfuncs: dont use deprecated validate-with="none" in CIB * conntrackd/galera/rabbitmq-cluster: avoid deprecated tool options * IPaddr2: change default for lvs_ipv6_addrlabel to true to avoid last added IP becoming src IP * IPaddr2: only set metric value for IPv6 when detected * galera/mariadb/mysql/redis: remove Unpromoted monitor-action, as it's covered by the regular monitor-action * apache/http-mon.sh: prefer curl due to new wget2 issues, including not being able to resolve hostnames from /etc/hosts * apache/http-mon.sh: dont use -L for wget2 as it's not implemented yet * Filesystem: return success during stop-action when leading or trailing whitespace is present in device or directory parameters * pgsql: pgsql_status: silence ERROR: command failed: runuser ... * ocf-shellfuncs: ocf_run(): add debug level error logging OBS-URL: https://build.opensuse.org/package/show/network:ha-clustering:Factory/resource-agents?expand=0&rev=48
21 lines
696 B
Diff
21 lines
696 B
Diff
--- resource-agents/configure.ac-orig 2024-07-31 09:21:33.479621551 +0200
|
|
+++ resource-agents/configure.ac 2024-07-31 09:21:58.027818044 +0200
|
|
@@ -503,7 +503,7 @@
|
|
AC_SUBST(RM)
|
|
AC_SUBST(TEST)
|
|
|
|
-AM_PATH_PYTHON([3.6])
|
|
+AM_PATH_PYTHON([3.11])
|
|
if test -z "$PYTHON"; then
|
|
echo "*** Essential program python not found" 1>&2
|
|
exit 1
|
|
@@ -522,7 +522,7 @@
|
|
AC_PYTHON_MODULE(requests)
|
|
AC_PYTHON_MODULE(urllib3)
|
|
|
|
-AS_VERSION_COMPARE([$PYTHON_VERSION], [3.6], [BUILD_OCF_PY=0], [BUILD_OCF_PY=1], [BUILD_OCF_PY=1])
|
|
+AS_VERSION_COMPARE([$PYTHON_VERSION], [3.11], [BUILD_OCF_PY=0], [BUILD_OCF_PY=1], [BUILD_OCF_PY=1])
|
|
|
|
BUILD_AZURE_EVENTS=1
|
|
if test -z "$PYTHON" || test $BUILD_OCF_PY -eq 0; then
|