From: Harald Hoyer Date: Wed, 5 Mar 2014 11:23:49 +0000 (+0100) Subject: dracut-functions.sh: degrade info about missing binaries to info X-Git-Tag: 037~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=83a3cba777efb71be6c368a65e2ed5794395168e;p=thirdparty%2Fdracut.git dracut-functions.sh: degrade info about missing binaries to info --- diff --git a/dracut-functions.sh b/dracut-functions.sh index afe2f38ed..391b549b2 100755 --- a/dracut-functions.sh +++ b/dracut-functions.sh @@ -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