From: Victor Lowther Date: Sun, 8 Mar 2009 14:21:06 +0000 (-0500) Subject: Fixup 90kernel-modules-loaded X-Git-Tag: 0.1~297 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cac7ac4a45f74a3c23fd01a2e9d0334c495565d7;p=thirdparty%2Fdracut.git Fixup 90kernel-modules-loaded The inst functions do not know how to handle directories directly. Just find the files, and they will create the directories as needed. --- diff --git a/modules.d/90kernel-modules-loaded/install b/modules.d/90kernel-modules-loaded/install index 666d12c52..c0c19bbcb 100755 --- a/modules.d/90kernel-modules-loaded/install +++ b/modules.d/90kernel-modules-loaded/install @@ -7,5 +7,5 @@ done [ -f /etc/modprobe.conf ] && dracut_install /etc/modprobe.conf -dracut_install $(find /etc/modprobe.d/ ) +dracut_install $(find /etc/modprobe.d/ -type f )