summaryrefslogtreecommitdiffstats
path: root/0017-crypt-Fix-typo-etc-crypttab-not-etc-cryptab.patch
diff options
context:
space:
mode:
Diffstat (limited to '0017-crypt-Fix-typo-etc-crypttab-not-etc-cryptab.patch')
-rw-r--r--0017-crypt-Fix-typo-etc-crypttab-not-etc-cryptab.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/0017-crypt-Fix-typo-etc-crypttab-not-etc-cryptab.patch b/0017-crypt-Fix-typo-etc-crypttab-not-etc-cryptab.patch
deleted file mode 100644
index 8074530..0000000
--- a/0017-crypt-Fix-typo-etc-crypttab-not-etc-cryptab.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-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