From d858a847a3073a0dbb46a965ab552b20ebbe05fb Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Mon, 5 Feb 2024 08:40:08 -0500 Subject: [PATCH] tier-1: Enable dracut crypt module too We want to support LUKS encrypted root filesystems in general. We're shipping the code in the root, so we might as well enable it in the initramfs. --- tier-1/initramfs-full.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tier-1/initramfs-full.yaml b/tier-1/initramfs-full.yaml index 3288489..d5547ef 100644 --- a/tier-1/initramfs-full.yaml +++ b/tier-1/initramfs-full.yaml @@ -4,5 +4,5 @@ postprocess: #!/usr/bin/env bash mkdir -p /usr/lib/dracut/dracut.conf.d cat > /usr/lib/dracut/dracut.conf.d/30-bootc-tier-1.conf << 'EOF' - dracutmodules+=" lvm " + dracutmodules+=" lvm crypt " EOF