mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2024-11-25 22:27:34 +00:00
fix #51: added a check into umount_tomb() before removing mount point: if it's the default one, then delete it
This commit is contained in:
parent
262855fa10
commit
350eeb7483
7
src/tomb
7
src/tomb
@ -954,8 +954,11 @@ umount_tomb() {
|
|||||||
umount ${tombmount}
|
umount ${tombmount}
|
||||||
if ! [ $? = 0 ]; then
|
if ! [ $? = 0 ]; then
|
||||||
error "Tomb is busy, cannot umount!"
|
error "Tomb is busy, cannot umount!"
|
||||||
else
|
else
|
||||||
rmdir ${tombmount}
|
# this means we used a "default" mount point
|
||||||
|
if [ "${tombmount}" = "/media/${tombname}.tomb" ]; then
|
||||||
|
rmdir ${tombmount}
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user