From ba5dcb3d878c31ba77a1f93610a8c05aeef59466 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 3 Nov 2006 14:02:39 +0100 Subject: [PATCH 1/1] run 'true' if umount... in chroot-script fails --- chroot-script | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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." -- 2.1.4