]> 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>
Wed, 5 Mar 2014 11:23:49 +0000 (12:23 +0100)
dracut-functions.sh

index afe2f38edd816a2b30bf15af9e6ac97b97c0f4f6..391b549b27de1b6c689bc6fd670e833430e36c9b 100755 (executable)
@@ -49,7 +49,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
@@ -73,7 +73,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