24 lines
711 B
Diff
24 lines
711 B
Diff
|
From b02b06c437b1d8cb1dcfe8ace47c2efc4a0e476c Mon Sep 17 00:00:00 2001
|
||
|
From: Oyvind Albrigtsen <oalbrigt@redhat.com>
|
||
|
Date: Thu, 30 Mar 2023 14:44:41 +0200
|
||
|
Subject: [PATCH] Filesystem: fail if AWS efs-utils not installed when
|
||
|
fstype=efs
|
||
|
|
||
|
---
|
||
|
heartbeat/Filesystem | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/heartbeat/Filesystem b/heartbeat/Filesystem
|
||
|
index 65088029ec..50c68f115b 100755
|
||
|
--- a/heartbeat/Filesystem
|
||
|
+++ b/heartbeat/Filesystem
|
||
|
@@ -456,7 +456,7 @@ fstype_supported()
|
||
|
# System (EFS)
|
||
|
case "$FSTYPE" in
|
||
|
fuse.*|glusterfs|rozofs) support="fuse";;
|
||
|
- efs) support="nfs4";;
|
||
|
+ efs) check_binary "mount.efs"; support="nfs4";;
|
||
|
esac
|
||
|
|
||
|
if [ "$support" != "$FSTYPE" ]; then
|