diff options
author | Martin Willi <martin@revosec.ch> | 2013-03-22 11:27:37 +0100 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2013-03-26 10:31:29 +0100 |
commit | 0ba884234805dead2bb2b06a386a9b1c818771d7 (patch) | |
tree | b63652d36569f472ab17b00a082bd52c2b60135b | |
parent | 51caeeb161b671f32654e37d8379a3a527bfad92 (diff) | |
download | strongswan-0ba884234805dead2bb2b06a386a9b1c818771d7.tar.bz2 strongswan-0ba884234805dead2bb2b06a386a9b1c818771d7.tar.xz |
Lazy unmount guest filesystem after building image, as it still might be busy
-rwxr-xr-x | testing/scripts/build-guestimages | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/scripts/build-guestimages b/testing/scripts/build-guestimages index b93c868d2..f7fb1f85c 100755 --- a/testing/scripts/build-guestimages +++ b/testing/scripts/build-guestimages @@ -65,7 +65,7 @@ do execute_chroot "update-rc.d bind9 defaults" 0 fi sync - execute "umount $LOOPDIR" 0 + execute "umount -l $LOOPDIR" 0 execute "qemu-nbd -d $NBDEV" 0 log_status 0 done |