]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
dracut-functions.sh: degrade info about missing binaries to info
authorHarald Hoyer <harald@redhat.com>
Wed, 5 Mar 2014 11:23:49 +0000 (12:23 +0100)
committerHarald Hoyer <harald@redhat.com>
Thu, 16 Jul 2015 07:42:50 +0000 (09:42 +0200)
(cherry picked from commit 83a3cba777efb71be6c368a65e2ed5794395168e)

dracut-functions.sh

index 973e23125c285d2c39432d94d0e223b7d5a99c15..65ccebe5a0fa2d378c4c1d96a06a62931dbe8ad3 100755 (executable)
@@ -44,7 +44,7 @@ require_binaries() {
 
     for cmd in "$@"; do
         if ! find_binary "$cmd" &>/dev/null; then
-            dwarning "$_module_name: Could not find command '$cmd'!"
+            dinfo "$_module_name: Could not find command '$cmd'!"
             ((_ret++))
         fi
     done
@@ -68,7 +68,7 @@ require_any_binary() {
     done
 
     if (( $_ret != 0 )); then
-        dwarning "$_module_name: Could not find any command of '$@'!"
+        dinfo "$_module_name: Could not find any command of '$@'!"
         return 1
     fi