Blame SOURCES/0284-dracut-functions.sh-degrade-info-about-missing-binar.patch

18971c
From a6470f332f1b522f8d1c159a9c15b520d35ef6d4 Mon Sep 17 00:00:00 2001
18971c
From: Harald Hoyer <harald@redhat.com>
18971c
Date: Wed, 5 Mar 2014 12:23:49 +0100
18971c
Subject: [PATCH] dracut-functions.sh: degrade info about missing binaries to
18971c
 info
18971c
18971c
(cherry picked from commit 83a3cba777efb71be6c368a65e2ed5794395168e)
18971c
---
18971c
 dracut-functions.sh | 4 ++--
18971c
 1 file changed, 2 insertions(+), 2 deletions(-)
18971c
18971c
diff --git a/dracut-functions.sh b/dracut-functions.sh
18971c
index 973e2312..65ccebe5 100755
18971c
--- a/dracut-functions.sh
18971c
+++ b/dracut-functions.sh
18971c
@@ -44,7 +44,7 @@ require_binaries() {
18971c
 
18971c
     for cmd in "$@"; do
18971c
         if ! find_binary "$cmd" &>/dev/null; then
18971c
-            dwarning "$_module_name: Could not find command '$cmd'!"
18971c
+            dinfo "$_module_name: Could not find command '$cmd'!"
18971c
             ((_ret++))
18971c
         fi
18971c
     done
18971c
@@ -68,7 +68,7 @@ require_any_binary() {
18971c
     done
18971c
 
18971c
     if (( $_ret != 0 )); then
18971c
-        dwarning "$_module_name: Could not find any command of '$@'!"
18971c
+        dinfo "$_module_name: Could not find any command of '$@'!"
18971c
         return 1
18971c
     fi
18971c