mirror of
https://github.com/Llewellynvdm/Tomb.git
synced 2025-04-04 08:41:51 +00:00
Merge pull request #53 from davinerd/fix_remove_mountpoint_51
Removing default mount point when umounting the tomb
This commit is contained in:
commit
5d54a3b121
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…
x
Reference in New Issue
Block a user