diff options
| author | Daniel Baumann <daniel@debian.org> | 2013-02-17 15:53:53 +0100 |
|---|---|---|
| committer | Daniel Baumann <mail@daniel-baumann.ch> | 2013-05-06 13:54:15 +0200 |
| commit | 54902399948caafc424dee2f6453c6598a1d926c (patch) | |
| tree | cce976f78c87dd8114967762f12bc953f9ff787a | |
| parent | bc62502e4cbe0944a9ee10cc3c7fc93ae11238bb (diff) | |
| download | live-boot-54902399948caafc424dee2f6453c6598a1d926c.tar.gz live-boot-54902399948caafc424dee2f6453c6598a1d926c.zip | |
Silencing unmounting of potentially stray tmpfs on /live/overlay.
| -rwxr-xr-x | scripts/boot/9990-overlay.sh | 2 |
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 } |
