From: Michael Prokop Date: Fri, 3 Nov 2006 13:36:33 +0000 (+0100) Subject: ommit -i option of cp, send output of umount to /dev/null X-Git-Tag: 0.1~11 X-Git-Url: https://git.grml.org/?p=grml-debootstrap.git;a=commitdiff_plain;h=66df47139433dba881347c30e56a2686cbcf170f;ds=sidebyside ommit -i option of cp, send output of umount to /dev/null --- diff --git a/chroot-script b/chroot-script index 36e8cd3..e922b1d 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 14:19:42 CET 2006 [mika] +# Latest change: Fre Nov 03 14:36:06 CET 2006 [mika] ################################################################################ set -e # exit on any error @@ -124,7 +124,7 @@ if [ "$BOOTMGR" = 'grub' ] ; then # copy stage-files to /boot/grub/ [ -d /boot/grub/ ] || mkdir /boot/grub - cp -i /usr/lib/grub/i386-pc/* /boot/grub/ + cp /usr/lib/grub/i386-pc/* /boot/grub/ # otherwise grub fails with 'Could not find device for /boot/boot: not found or not a block device' cp /etc/mtab /etc/mtab.old @@ -171,10 +171,10 @@ EOF fi # unmount all filesystems in chroot, make sure nothing is left... -umount -a || true -umount /proc || true -umount /proc || true -umount -a || true +umount -a 1>/dev/null 2>/dev/null || true +umount /proc 1>/dev/null 2>/dev/null || true +umount /proc 1>/dev/null 2>/dev/null || true +umount -a 1>/dev/null 2>/dev/null || true # finally exit the chroot echo "Finished chroot installation, exiting."