From: Marc Fiuczynski Date: Thu, 24 Jan 2008 15:49:09 +0000 (+0000) Subject: Removing -l option for umount of the loop device. Daniel says that X-Git-Tag: 4.2-rc2~244 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=7104e53fe47fd549f35b2a1eb76e6631a73acbdf;p=build.git Removing -l option for umount of the loop device. Daniel says that the -l option does not deallocate the actual loop device, which is why we were running out of those on the build machine. --- diff --git a/build.common b/build.common index 52c1887e..23d282d0 100644 --- a/build.common +++ b/build.common @@ -636,7 +636,7 @@ function pl_make_image() { (cd $root && tar cpf - .) | (cd $tmp && tar xpf -) # Unmount it - umount -l $tmp + umount $tmp rmdir $tmp trap - ERR INT }