- Filesystem: fix issue with Vormetric mounts
Resolves: RHEL-97216
This commit is contained in:
parent
d0c80cdeab
commit
60ba8a99de
24
RHEL-97216-Filesystem-fix-issue-with-Vormetric-mounts.patch
Normal file
24
RHEL-97216-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
|
Name: resource-agents
|
||||||
Summary: Open Source HA Reusable Cluster Resource Scripts
|
Summary: Open Source HA Reusable Cluster Resource Scripts
|
||||||
Version: 4.16.0
|
Version: 4.16.0
|
||||||
Release: 19%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist}
|
Release: 20%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist}
|
||||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
License: GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||||
URL: https://github.com/ClusterLabs/resource-agents
|
URL: https://github.com/ClusterLabs/resource-agents
|
||||||
Source0: %{upstream_prefix}-%{upstream_version}.tar.gz
|
Source0: %{upstream_prefix}-%{upstream_version}.tar.gz
|
||||||
@ -75,6 +75,7 @@ Patch22: RHEL-88538-Filesystem-avoid-chance-of-getting-the-wrong-bind-mount.patc
|
|||||||
Patch23: RHEL-93680-IPaddr2-IPsrcaddr-avoid-duplicate-route-issues.patch
|
Patch23: RHEL-93680-IPaddr2-IPsrcaddr-avoid-duplicate-route-issues.patch
|
||||||
Patch24: RHEL-85014-IPaddr2-add-link-status-DOWN-LOWERLAYERDOWN-check.patch
|
Patch24: RHEL-85014-IPaddr2-add-link-status-DOWN-LOWERLAYERDOWN-check.patch
|
||||||
Patch25: RHEL-99743-Filesystem-remove-validate-all-fstype-check.patch
|
Patch25: RHEL-99743-Filesystem-remove-validate-all-fstype-check.patch
|
||||||
|
Patch26: RHEL-97216-Filesystem-fix-issue-with-Vormetric-mounts.patch
|
||||||
|
|
||||||
# bundled ha-cloud-support libs
|
# bundled ha-cloud-support libs
|
||||||
Patch500: ha-cloud-support-aliyun.patch
|
Patch500: ha-cloud-support-aliyun.patch
|
||||||
@ -259,6 +260,7 @@ exit 1
|
|||||||
%patch -p1 -P 23
|
%patch -p1 -P 23
|
||||||
%patch -p1 -P 24
|
%patch -p1 -P 24
|
||||||
%patch -p1 -P 25
|
%patch -p1 -P 25
|
||||||
|
%patch -p1 -P 26
|
||||||
|
|
||||||
# bundled ha-cloud-support libs
|
# bundled ha-cloud-support libs
|
||||||
%patch -p1 -P 500
|
%patch -p1 -P 500
|
||||||
@ -589,6 +591,11 @@ rm -rf %{buildroot}/usr/share/doc/resource-agents
|
|||||||
%{_usr}/lib/ocf/lib/heartbeat/OCF_*.pm
|
%{_usr}/lib/ocf/lib/heartbeat/OCF_*.pm
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Jul 3 2025 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.16.0-20
|
||||||
|
- Filesystem: fix issue with Vormetric mounts
|
||||||
|
|
||||||
|
Resolves: RHEL-97216
|
||||||
|
|
||||||
* Wed Jun 25 2025 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.16.0-19
|
* Wed Jun 25 2025 Oyvind Albrigtsen <oalbrigt@redhat.com> - 4.16.0-19
|
||||||
- Filesystem: remove unreliable validate-all fstype check
|
- Filesystem: remove unreliable validate-all fstype check
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user