echo "We have discovered Encrypted filesystems, do you want to mount them now ?" MSG=`gprintf "Press Y within %%d seconds to mount your encrypted filesystems..."` KEYS=`gprintf "yY"` if /sbin/getkey -c $AUTOFSCK_CRYPTO_TIMEOUT -m "$MSG" "$KEYS"; then echo -e '\n' for i in ${encrypted};do echo -n "${i} "; mount ${i} done else echo -e '\n' fi