dracut-functions.sh: degrade info about missing binaries to info
parent
cd501ff74b
commit
83a3cba777
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue