dracut-functions.sh:require_binaries() clarify message

The info message written by require_binaries() was a bit frighten to
users. So just be a little bit more verbose.

If you have ideas on how to improve the message for these "soft"
dependency modules, please submit patches.
master
Harald Hoyer 2014-05-20 13:23:43 +02:00
parent ce7f408dfd
commit 0fa5dbedc5
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ require_binaries() {


for cmd in "$@"; do for cmd in "$@"; do
if ! find_binary "$cmd" &>/dev/null; then if ! find_binary "$cmd" &>/dev/null; then
dinfo "$_module_name: Could not find command '$cmd'!" dinfo "dracut module '${_module_name#[0-9][0-9]}' will not be installed, because command '$cmd' could not be found!"
((_ret++)) ((_ret++))
fi fi
done done