From 0a247835ac7e8d54e897d103560ec9b0bd85ecd3 Mon Sep 17 00:00:00 2001 From: Jesse Andrews Date: Mon, 31 Oct 2011 00:05:35 -0700 Subject: [PATCH] attempt to get around the tail not outputing issue --- tools/build_libvirt.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_libvirt.sh b/tools/build_libvirt.sh index de3fb3c..f24f726 100755 --- a/tools/build_libvirt.sh +++ b/tools/build_libvirt.sh @@ -406,7 +406,7 @@ if [ "$WAIT_TILL_LAUNCH" = "1" ]; then sleep 1 done - tail -F $VM_DIR/console.log & + tail -n +1 -F $VM_DIR/console.log & TAIL_PID=$!