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

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