- Filesystem: fix issue with Vormetric mounts
Resolves: RHEL-97123
This commit is contained in:
parent
3a725c872d
commit
6eb835dab9
24
RHEL-97123-Filesystem-fix-issue-with-Vormetric-mounts.patch
Normal file
24
RHEL-97123-Filesystem-fix-issue-with-Vormetric-mounts.patch
Normal file
@ -0,0 +1,24 @@
|
||||
From 9127148e15fc200356df2571c7c9e5a716854c24 Mon Sep 17 00:00:00 2001
|
||||
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
|
||||
Date: Thu, 26 Jun 2025 09:39:31 +0200
|
||||
Subject: [PATCH] Filesystem: fix issue with Vormetric mounts
|
||||
|
||||
---
|
||||
heartbeat/Filesystem | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/heartbeat/Filesystem b/heartbeat/Filesystem
|
||||
index d10e5a714..515a3919d 100755
|
||||
--- a/heartbeat/Filesystem
|
||||
+++ b/heartbeat/Filesystem
|
||||
@@ -361,8 +361,8 @@ list_mounts() {
|
||||
fi
|
||||
done
|
||||
|
||||
- # Convert octal \040 to space characters
|
||||
- printf "$mount_list"
|
||||
+ # Convert octal \040 to space characters and ignore Vormetric mounts
|
||||
+ printf "$mount_list" | grep -v "secfs2$"
|
||||
}
|
||||
|
||||
determine_blockdevice() {
|
@ -45,7 +45,7 @@
|
||||
Name: resource-agents
|
||||
Summary: Open Source HA Reusable Cluster Resource Scripts
|
||||
Version: 4.10.0
|
||||
Release: 77%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist}
|
||||
Release: 78%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist}
|
||||
License: GPLv2+ and LGPLv2+
|
||||
URL: https://github.com/ClusterLabs/resource-agents
|
||||
Source0: %{upstream_prefix}-%{upstream_version}.tar.gz
|
||||
@ -161,6 +161,7 @@ Patch108: RHEL-88429-2-podman-etcd-remove-unused-actions-from-metadata.patch
|
||||
Patch109: RHEL-88429-3-podman-etcd-fix-listen-peer-urls-binding.patch
|
||||
Patch110: RHEL-70044-IPaddr2-IPsrcaddr-avoid-duplicate-route-issues.patch
|
||||
Patch111: RHEL-7688-IPaddr2-add-link-status-DOWN-LOWERLAYERDOWN-check.patch
|
||||
Patch112: RHEL-97123-Filesystem-fix-issue-with-Vormetric-mounts.patch
|
||||
|
||||
# bundled ha-cloud-support libs
|
||||
Patch500: ha-cloud-support-aliyun.patch
|
||||
@ -396,6 +397,7 @@ exit 1
|
||||
%patch -p1 -P 109
|
||||
%patch -p1 -P 110
|
||||
%patch -p1 -P 111
|
||||
%patch -p1 -P 112
|
||||
|
||||
# bundled ha-cloud-support libs
|
||||
%patch -p1 -P 500
|
||||
@ -725,6 +727,11 @@ rm -rf %{buildroot}/usr/share/doc/resource-agents
|
||||
%{_usr}/lib/ocf/lib/heartbeat/OCF_*.pm
|
||||
|
||||
%changelog
|
||||
* Thu Jul 3 2025 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.10.0-78
|
||||
- Filesystem: fix issue with Vormetric mounts
|
||||
|
||||
Resolves: RHEL-97123
|
||||
|
||||
* Tue Jun 17 2025 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.10.0-77
|
||||
- IPaddr2/IPsrcaddr: fix to avoid duplicate route issues
|
||||
- IPaddr2: add link status DOWN/LOWERLAYERDOWN check
|
||||
|
Loading…
Reference in New Issue
Block a user