Cleanup after ourselves

This commit is contained in:
Hellekin O. Wolf =8) 2011-02-11 04:10:16 +01:00 committed by Jaromil
parent 078f44160a
commit f14b31ad59

View File

@ -575,6 +575,7 @@ mount_tomb() {
if [ $? != 0 ]; then
# is it a LUKS encrypted nest? see cryptsetup(1)
error "$tombfile is not a valid Luks encrypted storage file"
rmdir $tombmount 2>/dev/null
return 1
fi
@ -611,12 +612,14 @@ mount_tomb() {
if [ -r ${usbkey_mount}/.tomb/${tombkey} ]; then
umount ${usbkey_mount}
rmdir ${usbkey_mount}
unset ${usbkey_mount}
fi
if ! [ -r /dev/mapper/${mapper} ]; then
error "failure mounting the encrypted file"
losetup -d ${nstloop}
rmdir ${tombmount} 2>/dev/null
return 1
fi