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: RHEL-7.2~76 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6470f332f1b522f8d1c159a9c15b520d35ef6d4;p=thirdparty%2Fdracut.git dracut-functions.sh: degrade info about missing binaries to info (cherry picked from commit 83a3cba777efb71be6c368a65e2ed5794395168e) --- diff --git a/dracut-functions.sh b/dracut-functions.sh index 973e23125..65ccebe5a 100755 --- a/dracut-functions.sh +++ b/dracut-functions.sh @@ -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