Make sure all filesystems in targetdir are unmounted.

This commit is contained in:
Juan RP 2013-05-20 16:00:34 +02:00
parent b557955207
commit dfb3ade8c5
1 changed files with 1 additions and 1 deletions

View File

@ -683,7 +683,7 @@ mount_filesystems() {
umount_filesystems() {
local f
for f in sys proc dev; do
for f in sys/fs/fuse/connections sys proc dev; do
echo "Unmounting $TARGETDIR/$f..." >$LOG
umount $TARGETDIR/$f >$LOG 2>&1
done