25 lines
987 B
Diff
25 lines
987 B
Diff
|
From 7deba0428a23b3f410a7cf8cac7cf8355e4dc150 Mon Sep 17 00:00:00 2001
|
||
|
From: James Lee <jlee@thestaticvoid.com>
|
||
|
Date: Tue, 6 Aug 2013 11:25:58 -0400
|
||
|
Subject: [PATCH] crypt: Fix typo--/etc/crypttab not /etc/cryptab
|
||
|
|
||
|
1ae8b8a breaks the crypt module for those who use keyfiles due to a
|
||
|
typo leading to the exclusion of /etc/crypttab from the initrd.
|
||
|
---
|
||
|
modules.d/90crypt/module-setup.sh | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/modules.d/90crypt/module-setup.sh b/modules.d/90crypt/module-setup.sh
|
||
|
index 975f115..68b5fbe 100755
|
||
|
--- a/modules.d/90crypt/module-setup.sh
|
||
|
+++ b/modules.d/90crypt/module-setup.sh
|
||
|
@@ -57,7 +57,7 @@ install() {
|
||
|
inst_hook cleanup 30 "$moddir/crypt-cleanup.sh"
|
||
|
fi
|
||
|
|
||
|
- if [[ $hostonly ]] && [[ -f /etc/cryptab ]]; then
|
||
|
+ if [[ $hostonly ]] && [[ -f /etc/crypttab ]]; then
|
||
|
# filter /etc/crypttab for the devices we need
|
||
|
while read _mapper _dev _rest; do
|
||
|
[[ $_mapper = \#* ]] && continue
|