crypt: Fix typo--/etc/crypttab not /etc/cryptab
authorJames Lee <jlee@thestaticvoid.com>
Tue, 6 Aug 2013 15:25:58 +0000 (11:25 -0400)
committerHarald Hoyer <harald@redhat.com>
Wed, 7 Aug 2013 08:33:15 +0000 (10:33 +0200)
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

index 975f115..68b5fbe 100755 (executable)
@@ -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