1573a3
From 8a4e5b5988d716259ad5b684dc2814d265007cb5 Mon Sep 17 00:00:00 2001
1573a3
From: Peter Levine <plevine457@gmail.com>
1573a3
Date: Mon, 1 Feb 2021 22:17:06 -0500
1573a3
Subject: [PATCH] fix(watchdog): replace return with echo
1573a3
1573a3
(cherry picked from commit c35cbd2e561714207388af69820cee2743dbcbc3)
1573a3
1573a3
Resolves: #1890039
1573a3
---
1573a3
 modules.d/04watchdog/module-setup.sh | 3 ++-
1573a3
 1 file changed, 2 insertions(+), 1 deletion(-)
1573a3
1573a3
diff --git a/modules.d/04watchdog/module-setup.sh b/modules.d/04watchdog/module-setup.sh
1573a3
index 15bcd897..fdc62986 100755
1573a3
--- a/modules.d/04watchdog/module-setup.sh
1573a3
+++ b/modules.d/04watchdog/module-setup.sh
1573a3
@@ -7,7 +7,8 @@ check() {
1573a3
 
1573a3
 # called by dracut
1573a3
 depends() {
1573a3
-    return "watchdog-modules"
1573a3
+    echo watchdog-modules
1573a3
+    return 0
1573a3
 }
1573a3
 
1573a3
 # called by dracut
1573a3