From: Daniel Baumann Date: Sun, 17 Feb 2013 14:53:53 +0000 (+0100) Subject: Silencing unmounting of potentially stray tmpfs on /live/overlay. X-Git-Tag: debian/4.0_a7-1~2 X-Git-Url: http://git.grml.org/?a=commitdiff_plain;h=54902399948caafc424dee2f6453c6598a1d926c;hp=bc62502e4cbe0944a9ee10cc3c7fc93ae11238bb;p=live-boot-grml.git Silencing unmounting of potentially stray tmpfs on /live/overlay. --- diff --git a/scripts/boot/9990-overlay.sh b/scripts/boot/9990-overlay.sh index 71e9a74..10054e8 100755 --- a/scripts/boot/9990-overlay.sh +++ b/scripts/boot/9990-overlay.sh @@ -402,5 +402,5 @@ setup_unionfs () # ensure that a potentially stray tmpfs gets removed # otherways, initramfs-tools is unable to remove /live # and fails to boot - umount /live/overlay || true + umount /live/overlay > /dev/null 2>&1 || true }