From fce053439cdf42986accd890a8f7d690a121faa7 Mon Sep 17 00:00:00 2001 From: Kevin Kofler Date: Thu, 13 Oct 2016 18:44:07 +0200 Subject: [PATCH] [fstab] Do not omit "/" from crypttab. At least the Debian update-initramfs needs the entry to be there (see pull request #254). Dracut will probably need it too. And logically, it should be there. --- src/modules/fstab/main.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/modules/fstab/main.py b/src/modules/fstab/main.py index 65f483bbf..528a8487f 100644 --- a/src/modules/fstab/main.py +++ b/src/modules/fstab/main.py @@ -152,9 +152,6 @@ class FstabGenerator(object): if not mapper_name or not luks_uuid: return None - if mount_point == "/": - return None - return dict( name=mapper_name, device="UUID=" + luks_uuid,