line 38 (version 0.3, for 0.2.11 it is 28):
if grep -q "encryption=" /etc/fstab; then
if somebody has such line but it is commented out then
system starting fails (no fs to mount)
So maybe
if grep -q "^[^#].*encryption=" /etc/fstab; then
or something stronger?
wrobell <wrobell at ite.pl>