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

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