diff --git a/dracut-functions.sh b/dracut-functions.sh index afe2f38e..391b549b 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