]> git.ipfire.org Git - thirdparty/dracut-ng.git/commitdiff
fix(dracut-init.sh): do not print by default if a modules is not installed
authorLaszlo Gombos <laszlo.gombos@gmail.com>
Thu, 4 Apr 2024 15:05:59 +0000 (11:05 -0400)
committerNeal Gompa (ニール・ゴンパ) <ngompa13@gmail.com>
Fri, 5 Apr 2024 00:42:19 +0000 (20:42 -0400)
We are already printing out by default what modules are installed so user
can check what got installed.

dracut-init.sh

index 6b81833260137fdaa88c098557701a9ba2d4b5ac..c37038e37917eb54496603a40fcca564ed2722a8 100755 (executable)
@@ -115,7 +115,7 @@ require_binaries() {
 
     for cmd in "$@"; do
         if ! find_binary "$cmd" &> /dev/null; then
-            dinfo "Module '${_module_name#[0-9][0-9]}' will not be installed, because command '$cmd' could not be found!"
+            ddebug "Module '${_module_name#[0-9][0-9]}' will not be installed, because command '$cmd' could not be found!"
             ((_ret++))
         fi
     done