diff options
-rwxr-xr-x | mount-crypts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mount-crypts b/mount-crypts index e047a63..5bbdd52 100755 --- a/mount-crypts +++ b/mount-crypts @@ -9,7 +9,7 @@ sed 's/#.*$//' /etc/crypttab \ else cat fi \ -| while read -r name device key; do +| while read -r name device key _; do while [ ${maxWait} -gt 0 ] && [ ! -b "${device}" ]; do sleep 1 |