Silencing unmounting of potentially stray tmpfs on /live/overlay.
authorDaniel Baumann <daniel@debian.org>
Sun, 17 Feb 2013 14:53:53 +0000 (15:53 +0100)
committerDaniel Baumann <mail@daniel-baumann.ch>
Mon, 6 May 2013 11:54:15 +0000 (13:54 +0200)
scripts/boot/9990-overlay.sh

index 71e9a74..10054e8 100755 (executable)
@@ -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
 }