From: Michael Prokop Date: Fri, 3 Nov 2006 13:02:39 +0000 (+0100) Subject: run 'true' if umount... in chroot-script fails X-Git-Tag: 0.1~14 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=ba5dcb3d878c31ba77a1f93610a8c05aeef59466;hp=19dd85882a09df24fe07105984ec53f7964a4a8c run 'true' if umount... in chroot-script fails --- diff --git a/chroot-script b/chroot-script index bbb7c02..3eda6af 100644 --- a/chroot-script +++ b/chroot-script @@ -4,7 +4,7 @@ # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Fre Nov 03 13:22:25 CET 2006 [mika] +# Latest change: Fre Nov 03 14:02:25 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -169,10 +169,10 @@ EOF fi # unmount all filesystems in chroot, make sure nothing is left... -umount -a -umount /proc -umount /proc -umount -a +umount -a || true +umount /proc || true +umount /proc || true +umount -a || true # finally exit the chroot echo "Finished chroot installation, exiting."