From 833e0f9e83d44131d7674057fc6bb8e4bf402c09 Mon Sep 17 00:00:00 2001 From: James Lee Date: Thu, 26 Mar 2015 02:17:34 -0400 Subject: [PATCH] crypt-loop: Always include 'loop' kernel module When the 'loop' kernel module isn't loaded in a running system, it gets excluded from the hostonly initrd. Given that the crypt-loop dracut module has to be loaded explicitly anyway, it makes sense to always include the requisite loop kernel module. --- modules.d/91crypt-loop/module-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules.d/91crypt-loop/module-setup.sh b/modules.d/91crypt-loop/module-setup.sh index ed2cdea1b..ff0d5019e 100755 --- a/modules.d/91crypt-loop/module-setup.sh +++ b/modules.d/91crypt-loop/module-setup.sh @@ -14,7 +14,7 @@ depends() { # called by dracut installkernel() { - instmods loop + hostonly='' instmods loop } # called by dracut -- 2.47.2