Hello,
I've found that dracut skips a kernel module if it's specified in
/etc/modules-load.d/<module>.conf in a single line without EOL.
For example, when /etc/modules-load.d/krb5.conf contains the single line:
rpcsec_gss_krb5
(without end-of-line), I've got the error:
systemd-modules-load[]: Failed to find module 'rpcsec_gss_krb5'
and lsinitrd shows no such module in the initrd image.
Attached patch fixes the issue.
Best regards,
Alexander
diff -ru dracut-037/modules.d/98systemd/module-setup.sh dracut-037.new/modules.d/98systemd/module-setup.sh
--- dracut-037/modules.d/98systemd/module-setup.sh 2014-03-19 20:16:08.000000000 +0400
+++ dracut-037.new/modules.d/98systemd/module-setup.sh 2014-12-10 17:14:06.779593964 +0300
@@ -132,7 +132,8 @@
local _line i
for i in "$1"/*.conf; do
[[ -f $i ]] || continue
- while read _line; do
+ EOF=false; until $EOF ; do
+ read _line || EOF=true
case $_line in
\#*)
;;