From f04391f7be5b822c23c07fce1dcbda8640a103ed Mon Sep 17 00:00:00 2001 From: Matthew Brewer Date: Tue, 31 May 2016 15:45:40 +0200 Subject: make umounts --lazy for chroot-here.sh --- tools/chroot-here.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/chroot-here.sh b/tools/chroot-here.sh index 7c20805..63442b6 100755 --- a/tools/chroot-here.sh +++ b/tools/chroot-here.sh @@ -64,7 +64,7 @@ function mountDir() { function umountDir() { local dir=$1 echo -n "Unmounting ${dir} ... " - umount "${PWD}/${dir}" 2&>/dev/null + umount --lazy "${PWD}/${dir}" 2&>/dev/null echo "done." } -- cgit v1.2.3-65-gdbad