summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2013-02-17 15:53:53 +0100
committerDaniel Baumann <mail@daniel-baumann.ch>2013-05-06 13:54:15 +0200
commit54902399948caafc424dee2f6453c6598a1d926c (patch)
treecce976f78c87dd8114967762f12bc953f9ff787a /scripts
parentbc62502e4cbe0944a9ee10cc3c7fc93ae11238bb (diff)
downloadlive-boot-54902399948caafc424dee2f6453c6598a1d926c.tar.gz
live-boot-54902399948caafc424dee2f6453c6598a1d926c.zip
Silencing unmounting of potentially stray tmpfs on /live/overlay.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/boot/9990-overlay.sh2
1 files changed, 1 insertions, 1 deletions
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
}