From: Daniel Baumann Date: Fri, 30 May 2008 21:55:35 +0000 (+0200) Subject: Adding patch from Michal Suchanek to tail live.log and show... X-Git-Tag: debian/2.0.15-1~547 X-Git-Url: http://git.grml.org/?p=live-boot-grml.git;a=commitdiff_plain;h=770a8001e5b407910f2de38fbc5852c4356d05f0 Adding patch from Michal Suchanek to tail live.log and show its messages during boot (Closes: #440238). --- diff --git a/scripts/live b/scripts/live index 240691a..95c4c6b 100755 --- a/scripts/live +++ b/scripts/live @@ -1267,6 +1267,8 @@ mountroot () exec 7>&2 exec > live.log exec 2>&1 + tail -f live.log >&7 & + tailpid="${!}" Arguments @@ -1348,5 +1350,6 @@ mountroot () exec 1>&6 6>&- exec 2>&7 7>&- + kill ${tailpid} cp live.log "${rootmnt}/var/log/" }