dracut-functions.sh: degrade info about missing binaries to info

master
Harald Hoyer 2014-03-05 12:23:49 +01:00
parent cd501ff74b
commit 83a3cba777
1 changed files with 2 additions and 2 deletions

View File

@ -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