Adding unmount calls for pseudo-filesystems in Exit();.

This commit is contained in:
Daniel Baumann 2008-10-14 21:44:48 +02:00
parent ce7c2e2fe1
commit 4f9797c893
1 changed files with 6 additions and 1 deletions

View File

@ -17,5 +17,10 @@ Exit ()
set | grep -e ^LH
fi
# FIXME: Add /proc et al cleanup on failure
# Always exit true in case we are not able to unmount
# (e.g. due to running processes in chroot from user customizations)
umount chroot/dev/pts > /dev/null 2>&1 || true
umount chroot/proc > /dev/null 2>&1 || true
umount chroot/selinux > /dev/null 2>&1 || true
umount chroot/sys > /dev/null 2>&1 || true
}